mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-08 13:09:58 +00:00
configure_system: break instead of semicolon
Makes the code more readable Co-Authored-By: LC <lioncash@users.noreply.github.com>
This commit is contained in:
parent
d5fdbd88c8
commit
e483ed21eb
1 changed files with 4 additions and 2 deletions
|
@ -164,7 +164,8 @@ void ConfigureSystem::ApplyConfiguration() {
|
||||||
Settings::values.rng_seed.SetValue(std::nullopt);
|
Settings::values.rng_seed.SetValue(std::nullopt);
|
||||||
Settings::values.rng_seed.SetGlobal(true);
|
Settings::values.rng_seed.SetGlobal(true);
|
||||||
break;
|
break;
|
||||||
case ConfigurationShared::CheckState::Count:;
|
case ConfigurationShared::CheckState::Count:
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
switch (ConfigurationShared::trackers.use_custom_rtc) {
|
switch (ConfigurationShared::trackers.use_custom_rtc) {
|
||||||
|
@ -183,7 +184,8 @@ void ConfigureSystem::ApplyConfiguration() {
|
||||||
Settings::values.custom_rtc.SetValue(std::nullopt);
|
Settings::values.custom_rtc.SetValue(std::nullopt);
|
||||||
Settings::values.custom_rtc.SetGlobal(true);
|
Settings::values.custom_rtc.SetGlobal(true);
|
||||||
break;
|
break;
|
||||||
case ConfigurationShared::CheckState::Count:;
|
case ConfigurationShared::CheckState::Count:
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue