summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/time/clock_types.h
diff options
context:
space:
mode:
authorMorph <39850852+Morph1984@users.noreply.github.com>2021-04-08 19:26:38 +0200
committerMorph <39850852+Morph1984@users.noreply.github.com>2021-04-08 19:26:38 +0200
commit2283fccc1bb09e8d1266ffb60d7696f97dfddd17 (patch)
treed11d859d545f05df28a1f0484e1168e691163c83 /src/core/hle/service/time/clock_types.h
parentMerge pull request #6160 from Morph1984/fs-update-12.x (diff)
downloadyuzu-2283fccc1bb09e8d1266ffb60d7696f97dfddd17.tar
yuzu-2283fccc1bb09e8d1266ffb60d7696f97dfddd17.tar.gz
yuzu-2283fccc1bb09e8d1266ffb60d7696f97dfddd17.tar.bz2
yuzu-2283fccc1bb09e8d1266ffb60d7696f97dfddd17.tar.lz
yuzu-2283fccc1bb09e8d1266ffb60d7696f97dfddd17.tar.xz
yuzu-2283fccc1bb09e8d1266ffb60d7696f97dfddd17.tar.zst
yuzu-2283fccc1bb09e8d1266ffb60d7696f97dfddd17.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/time/clock_types.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/core/hle/service/time/clock_types.h b/src/core/hle/service/time/clock_types.h
index b78892223..a9cfe3eb0 100644
--- a/src/core/hle/service/time/clock_types.h
+++ b/src/core/hle/service/time/clock_types.h
@@ -12,6 +12,12 @@
namespace Service::Time::Clock {
+enum class TimeType : u8 {
+ UserSystemClock,
+ NetworkSystemClock,
+ LocalSystemClock,
+};
+
/// https://switchbrew.org/wiki/Glue_services#SteadyClockTimePoint
struct SteadyClockTimePoint {
s64 time_point;
@@ -84,7 +90,7 @@ struct ClockSnapshot {
SteadyClockTimePoint steady_clock_time_point;
TimeZone::LocationName location_name;
u8 is_automatic_correction_enabled;
- u8 type;
+ TimeType type;
INSERT_PADDING_BYTES_NOINIT(0x2);
static ResultCode GetCurrentTime(s64& current_time,