summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/hid/controllers/stubbed.cpp
diff options
context:
space:
mode:
authorMorph <39850852+Morph1984@users.noreply.github.com>2023-03-08 01:24:13 +0100
committerMorph <39850852+Morph1984@users.noreply.github.com>2023-03-08 03:17:47 +0100
commit1073346c7f5541056b7ea88a701ad2e8e91a89b2 (patch)
tree7163c903818bc34d2b6fe672db5168357ba383c3 /src/core/hle/service/hid/controllers/stubbed.cpp
parentcore: Promote CPU/GPU threads to time critical (diff)
downloadyuzu-1073346c7f5541056b7ea88a701ad2e8e91a89b2.tar
yuzu-1073346c7f5541056b7ea88a701ad2e8e91a89b2.tar.gz
yuzu-1073346c7f5541056b7ea88a701ad2e8e91a89b2.tar.bz2
yuzu-1073346c7f5541056b7ea88a701ad2e8e91a89b2.tar.lz
yuzu-1073346c7f5541056b7ea88a701ad2e8e91a89b2.tar.xz
yuzu-1073346c7f5541056b7ea88a701ad2e8e91a89b2.tar.zst
yuzu-1073346c7f5541056b7ea88a701ad2e8e91a89b2.zip
Diffstat (limited to 'src/core/hle/service/hid/controllers/stubbed.cpp')
-rw-r--r--src/core/hle/service/hid/controllers/stubbed.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/hid/controllers/stubbed.cpp b/src/core/hle/service/hid/controllers/stubbed.cpp
index df9ee0c3f..9e2f3ab21 100644
--- a/src/core/hle/service/hid/controllers/stubbed.cpp
+++ b/src/core/hle/service/hid/controllers/stubbed.cpp
@@ -26,7 +26,7 @@ void Controller_Stubbed::OnUpdate(const Core::Timing::CoreTiming& core_timing) {
}
CommonHeader header{};
- header.timestamp = core_timing.GetCPUTicks();
+ header.timestamp = core_timing.GetGlobalTimeNs().count();
header.total_entry_count = 17;
header.entry_count = 0;
header.last_entry_index = 0;