diff options
| author | 2020-07-14 13:40:49 -0400 | |
|---|---|---|
| committer | 2020-07-19 13:26:55 -0400 | |
| commit | e483ed21eb7b28ccc68689b7666cb39357592152 (patch) | |
| tree | f9a89b18f8b2338ea2517d79101d3847809b53a7 | |
| parent | clang-format (diff) | |
| download | yuzu-e483ed21eb7b28ccc68689b7666cb39357592152.tar.gz yuzu-e483ed21eb7b28ccc68689b7666cb39357592152.tar.xz yuzu-e483ed21eb7b28ccc68689b7666cb39357592152.zip | |
configure_system: break instead of semicolon
Makes the code more readable
Co-Authored-By: LC <lioncash@users.noreply.github.com>
| -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 | ||