diff options
Diffstat (limited to 'src/citra/config.cpp')
| -rw-r--r-- | src/citra/config.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/citra/config.cpp b/src/citra/config.cpp index 0d17c80bf..c5cb4fb38 100644 --- a/src/citra/config.cpp +++ b/src/citra/config.cpp | |||
| @@ -85,7 +85,7 @@ void Config::ReadValues() { | |||
| 85 | 85 | ||
| 86 | // Debugging | 86 | // Debugging |
| 87 | Settings::values.use_gdbstub = sdl2_config->GetBoolean("Debugging", "use_gdbstub", false); | 87 | Settings::values.use_gdbstub = sdl2_config->GetBoolean("Debugging", "use_gdbstub", false); |
| 88 | Settings::values.gdbstub_port = sdl2_config->GetInteger("Debugging", "gdbstub_port", 24689); | 88 | Settings::values.gdbstub_port = static_cast<u16>(sdl2_config->GetInteger("Debugging", "gdbstub_port", 24689)); |
| 89 | } | 89 | } |
| 90 | 90 | ||
| 91 | void Config::Reload() { | 91 | void Config::Reload() { |