summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar bunnei2022-10-14 23:37:02 -0700
committerGravatar bunnei2022-10-18 19:13:35 -0700
commit11f85ea7130a5245bd8d2090f0dd76ba65f15d23 (patch)
tree498e71a0bf7ed568fbdd9ac72d123e130e84a2ba
parentcore: hle: kernel: Use result macros for new/changed code. (diff)
downloadyuzu-11f85ea7130a5245bd8d2090f0dd76ba65f15d23.tar.gz
yuzu-11f85ea7130a5245bd8d2090f0dd76ba65f15d23.tar.xz
yuzu-11f85ea7130a5245bd8d2090f0dd76ba65f15d23.zip
core: core_timing: Remove unused IsHostTiming.
-rw-r--r--src/core/core_timing.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/core/core_timing.h b/src/core/core_timing.h
index 7996b529f..bd21dd904 100644
--- a/src/core/core_timing.h
+++ b/src/core/core_timing.h
@@ -69,11 +69,6 @@ public:
69 is_multicore = is_multicore_; 69 is_multicore = is_multicore_;
70 } 70 }
71 71
72 /// Check if it's using host timing.
73 bool IsHostTiming() const {
74 return is_multicore;
75 }
76
77 /// Pauses/Unpauses the execution of the timer thread. 72 /// Pauses/Unpauses the execution of the timer thread.
78 void Pause(bool is_paused); 73 void Pause(bool is_paused);
79 74