summaryrefslogtreecommitdiff
path: root/src/core
diff options
context:
space:
mode:
authorGravatar Zach Hilman2018-12-28 18:35:55 -0500
committerGravatar Zach Hilman2019-01-07 19:18:45 -0500
commitc6016856d878c8f68bc5518f3ef0270ea018bc3d (patch)
treecd1dafa296f01781617e895bc6ce7538e51b2cd9 /src/core
parentMerge pull request #1999 from ReinUsesLisp/dirty-shader (diff)
downloadyuzu-c6016856d878c8f68bc5518f3ef0270ea018bc3d.tar.gz
yuzu-c6016856d878c8f68bc5518f3ef0270ea018bc3d.tar.xz
yuzu-c6016856d878c8f68bc5518f3ef0270ea018bc3d.zip
settings: Add custom RTC settings
Stored as signed seconds since epoch.
Diffstat (limited to 'src/core')
-rw-r--r--src/core/settings.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/settings.h b/src/core/settings.h
index de01b05c0..5b211a716 100644
--- a/src/core/settings.h
+++ b/src/core/settings.h
@@ -350,6 +350,9 @@ struct Values {
350 bool use_docked_mode; 350 bool use_docked_mode;
351 bool enable_nfc; 351 bool enable_nfc;
352 std::optional<u32> rng_seed; 352 std::optional<u32> rng_seed;
353 std::optional<s64> custom_rtc; // Measured in seconds since epoch
354 s64 custom_rtc_differential; // Set on game boot, reset on stop. Seconds difference between
355 // current time and `custom_rtc`
353 s32 current_user; 356 s32 current_user;
354 s32 language_index; 357 s32 language_index;
355 358