summaryrefslogtreecommitdiff
path: root/src/core/hle/svc.cpp
diff options
context:
space:
mode:
authorGravatar Huw Pascoe2017-09-30 17:25:49 +0100
committerGravatar Huw Pascoe2017-09-30 17:38:14 +0100
commit529f4a01318a450f999ffa7e01c5c26f801d22e0 (patch)
tree8728152f1726aeb775c2bba2ecc60bc67354e083 /src/core/hle/svc.cpp
parentServices/UDS: Handle the rest of the connection sequence. (#2963) (diff)
downloadyuzu-529f4a01318a450f999ffa7e01c5c26f801d22e0.tar.gz
yuzu-529f4a01318a450f999ffa7e01c5c26f801d22e0.tar.xz
yuzu-529f4a01318a450f999ffa7e01c5c26f801d22e0.zip
Moved down_count to CoreTiming
Diffstat (limited to 'src/core/hle/svc.cpp')
-rw-r--r--src/core/hle/svc.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/svc.cpp b/src/core/hle/svc.cpp
index fefd50805..6be5db13f 100644
--- a/src/core/hle/svc.cpp
+++ b/src/core/hle/svc.cpp
@@ -1039,7 +1039,7 @@ static void SleepThread(s64 nanoseconds) {
1039static s64 GetSystemTick() { 1039static s64 GetSystemTick() {
1040 s64 result = CoreTiming::GetTicks(); 1040 s64 result = CoreTiming::GetTicks();
1041 // Advance time to defeat dumb games (like Cubic Ninja) that busy-wait for the frame to end. 1041 // Advance time to defeat dumb games (like Cubic Ninja) that busy-wait for the frame to end.
1042 Core::CPU().AddTicks(150); // Measured time between two calls on a 9.2 o3DS with Ninjhax 1.1b 1042 CoreTiming::AddTicks(150); // Measured time between two calls on a 9.2 o3DS with Ninjhax 1.1b
1043 return result; 1043 return result;
1044} 1044}
1045 1045