diff options
| -rw-r--r-- | src/yuzu/configuration/configure_system.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/yuzu/configuration/configure_system.cpp b/src/yuzu/configuration/configure_system.cpp index 5b485dd47..f5828f062 100644 --- a/src/yuzu/configuration/configure_system.cpp +++ b/src/yuzu/configuration/configure_system.cpp | |||
| @@ -164,7 +164,8 @@ void ConfigureSystem::ApplyConfiguration() { | |||
| 164 | Settings::values.rng_seed.SetValue(std::nullopt); | 164 | Settings::values.rng_seed.SetValue(std::nullopt); |
| 165 | Settings::values.rng_seed.SetGlobal(true); | 165 | Settings::values.rng_seed.SetGlobal(true); |
| 166 | break; | 166 | break; |
| 167 | case ConfigurationShared::CheckState::Count:; | 167 | case ConfigurationShared::CheckState::Count: |
| 168 | break; | ||
| 168 | } | 169 | } |
| 169 | 170 | ||
| 170 | switch (ConfigurationShared::trackers.use_custom_rtc) { | 171 | switch (ConfigurationShared::trackers.use_custom_rtc) { |
| @@ -183,7 +184,8 @@ void ConfigureSystem::ApplyConfiguration() { | |||
| 183 | Settings::values.custom_rtc.SetValue(std::nullopt); | 184 | Settings::values.custom_rtc.SetValue(std::nullopt); |
| 184 | Settings::values.custom_rtc.SetGlobal(true); | 185 | Settings::values.custom_rtc.SetGlobal(true); |
| 185 | break; | 186 | break; |
| 186 | case ConfigurationShared::CheckState::Count:; | 187 | case ConfigurationShared::CheckState::Count: |
| 188 | break; | ||
| 187 | } | 189 | } |
| 188 | } | 190 | } |
| 189 | 191 | ||