diff options
| author | 2016-05-07 17:24:16 -0400 | |
|---|---|---|
| committer | 2016-05-07 17:24:16 -0400 | |
| commit | 6abc6003f50cbaec555516bbaf8fce5bbecb2ff1 (patch) | |
| tree | 18ae5ec147f016b62e73d1de683d453c50407034 /src/citra/config.cpp | |
| parent | Merge pull request #1761 from Subv/applets_fb (diff) | |
| parent | fixup simple type conversions where possible (diff) | |
| download | yuzu-6abc6003f50cbaec555516bbaf8fce5bbecb2ff1.tar.gz yuzu-6abc6003f50cbaec555516bbaf8fce5bbecb2ff1.tar.xz yuzu-6abc6003f50cbaec555516bbaf8fce5bbecb2ff1.zip | |
Merge pull request #1718 from alex-laties/fixup-type-conversions
fixup simple type conversions where possible
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() { |