diff options
| author | 2016-04-25 16:10:03 -0400 | |
|---|---|---|
| committer | 2016-05-07 11:41:55 -0400 | |
| commit | 0a31e373f1728316b3dfed391ddcb99a474e4102 (patch) | |
| tree | 1b1bcf1af2398481e7208610f6a2e49264fe11db /src/citra/config.cpp | |
| parent | Merge pull request #1736 from MerryMage/sdl2-sink (diff) | |
| download | yuzu-0a31e373f1728316b3dfed391ddcb99a474e4102.tar.gz yuzu-0a31e373f1728316b3dfed391ddcb99a474e4102.tar.xz yuzu-0a31e373f1728316b3dfed391ddcb99a474e4102.zip | |
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() { |