summaryrefslogtreecommitdiff
path: root/src/common/wall_clock.h
diff options
context:
space:
mode:
authorGravatar Kelebek12023-10-29 13:50:55 +0000
committerGravatar Kelebek12024-01-24 04:26:55 +0000
commite4915fb7d2077584a11a15141bc81d28ed2b0125 (patch)
tree1783055dc2e98eaf9099e8e7b194b55f8f607747 /src/common/wall_clock.h
parentMerge pull request #12678 from german77/settings_impl (diff)
downloadyuzu-e4915fb7d2077584a11a15141bc81d28ed2b0125.tar.gz
yuzu-e4915fb7d2077584a11a15141bc81d28ed2b0125.tar.xz
yuzu-e4915fb7d2077584a11a15141bc81d28ed2b0125.zip
Rework time service to fix time passing offline.
Diffstat (limited to 'src/common/wall_clock.h')
-rw-r--r--src/common/wall_clock.h9
1 files changed, 3 insertions, 6 deletions
diff --git a/src/common/wall_clock.h b/src/common/wall_clock.h
index f45d3d8c5..3a0c43909 100644
--- a/src/common/wall_clock.h
+++ b/src/common/wall_clock.h
@@ -29,16 +29,13 @@ public:
29 virtual std::chrono::milliseconds GetTimeMS() const = 0; 29 virtual std::chrono::milliseconds GetTimeMS() const = 0;
30 30
31 /// @returns The guest CNTPCT ticks since the construction of this clock. 31 /// @returns The guest CNTPCT ticks since the construction of this clock.
32 virtual u64 GetCNTPCT() const = 0; 32 virtual s64 GetCNTPCT() const = 0;
33 33
34 /// @returns The guest GPU ticks since the construction of this clock. 34 /// @returns The guest GPU ticks since the construction of this clock.
35 virtual u64 GetGPUTick() const = 0; 35 virtual s64 GetGPUTick() const = 0;
36 36
37 /// @returns The raw host timer ticks since an indeterminate epoch. 37 /// @returns The raw host timer ticks since an indeterminate epoch.
38 virtual u64 GetHostTicksNow() const = 0; 38 virtual s64 GetUptime() const = 0;
39
40 /// @returns The raw host timer ticks since the construction of this clock.
41 virtual u64 GetHostTicksElapsed() const = 0;
42 39
43 /// @returns Whether the clock directly uses the host's hardware clock. 40 /// @returns Whether the clock directly uses the host's hardware clock.
44 virtual bool IsNative() const = 0; 41 virtual bool IsNative() const = 0;