core: settings: Add a setting for time zone.

This commit is contained in:
bunnei 2020-05-11 17:50:07 -04:00
parent 5dec81fcbd
commit 988e42a3f5
8 changed files with 282 additions and 10 deletions

View file

@ -394,6 +394,7 @@ struct Values {
s32 current_user;
s32 language_index;
s32 region_index;
s32 time_zone_index;
s32 sound_index;
// Controls
@ -490,6 +491,9 @@ struct Values {
bool IsGPULevelExtreme();
bool IsGPULevelHigh();
std::string GetTimeZoneString();
void Apply();
void LogSettings();
} // namespace Settings