summaryrefslogtreecommitdiffstats
path: root/src/core/core_timing.h
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-08-06 04:07:28 +0200
committerLioncash <mathew1800@gmail.com>2018-08-06 04:07:30 +0200
commita0c3a46aa9d2186e833bdc1872f9eb877230b429 (patch)
treea8715386f729ac3b10f0862de5e8b08537495673 /src/core/core_timing.h
parentMerge pull request #927 from bunnei/fix-texs (diff)
downloadyuzu-a0c3a46aa9d2186e833bdc1872f9eb877230b429.tar
yuzu-a0c3a46aa9d2186e833bdc1872f9eb877230b429.tar.gz
yuzu-a0c3a46aa9d2186e833bdc1872f9eb877230b429.tar.bz2
yuzu-a0c3a46aa9d2186e833bdc1872f9eb877230b429.tar.lz
yuzu-a0c3a46aa9d2186e833bdc1872f9eb877230b429.tar.xz
yuzu-a0c3a46aa9d2186e833bdc1872f9eb877230b429.tar.zst
yuzu-a0c3a46aa9d2186e833bdc1872f9eb877230b429.zip
Diffstat (limited to '')
-rw-r--r--src/core/core_timing.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/core_timing.h b/src/core/core_timing.h
index 7fe6380ad..3681e01ed 100644
--- a/src/core/core_timing.h
+++ b/src/core/core_timing.h
@@ -17,6 +17,7 @@
* ScheduleEvent(periodInCycles - cyclesLate, callback, "whatever")
*/
+#include <chrono>
#include <functional>
#include <string>
#include "common/common_types.h"
@@ -86,7 +87,7 @@ void ClearPendingEvents();
void ForceExceptionCheck(s64 cycles);
-u64 GetGlobalTimeUs();
+std::chrono::microseconds GetGlobalTimeUs();
int GetDowncount();