diff options
| author | 2019-09-21 20:09:55 +1000 | |
|---|---|---|
| committer | 2019-09-21 20:09:55 +1000 | |
| commit | 183c445c30ad9fa1f58660ff578ecf1b78e51b25 (patch) | |
| tree | 045c4a6945449d563ea420fbf5a4916cbde1f8b3 /src/yuzu_cmd/config.cpp | |
| parent | Merge pull request #2872 from FernandoS27/mem-gpu-opt (diff) | |
| parent | Address review comments (diff) | |
| download | yuzu-183c445c30ad9fa1f58660ff578ecf1b78e51b25.tar.gz yuzu-183c445c30ad9fa1f58660ff578ecf1b78e51b25.tar.xz yuzu-183c445c30ad9fa1f58660ff578ecf1b78e51b25.zip | |
Merge pull request #2806 from FearlessTobi/port-4882
Port citra-emu/citra#4882: "Add frametime logging for tracking performance over time"
Diffstat (limited to 'src/yuzu_cmd/config.cpp')
| -rw-r--r-- | src/yuzu_cmd/config.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/yuzu_cmd/config.cpp b/src/yuzu_cmd/config.cpp index 067d58d80..5cadfd191 100644 --- a/src/yuzu_cmd/config.cpp +++ b/src/yuzu_cmd/config.cpp | |||
| @@ -374,6 +374,8 @@ void Config::ReadValues() { | |||
| 374 | Settings::values.use_dev_keys = sdl2_config->GetBoolean("Miscellaneous", "use_dev_keys", false); | 374 | Settings::values.use_dev_keys = sdl2_config->GetBoolean("Miscellaneous", "use_dev_keys", false); |
| 375 | 375 | ||
| 376 | // Debugging | 376 | // Debugging |
| 377 | Settings::values.record_frame_times = | ||
| 378 | sdl2_config->GetBoolean("Debugging", "record_frame_times", false); | ||
| 377 | Settings::values.use_gdbstub = sdl2_config->GetBoolean("Debugging", "use_gdbstub", false); | 379 | Settings::values.use_gdbstub = sdl2_config->GetBoolean("Debugging", "use_gdbstub", false); |
| 378 | Settings::values.gdbstub_port = | 380 | Settings::values.gdbstub_port = |
| 379 | static_cast<u16>(sdl2_config->GetInteger("Debugging", "gdbstub_port", 24689)); | 381 | static_cast<u16>(sdl2_config->GetInteger("Debugging", "gdbstub_port", 24689)); |