summaryrefslogtreecommitdiff
path: root/src/core/core_timing.h
diff options
context:
space:
mode:
authorGravatar Fernando Sahmkow2019-10-11 14:44:14 -0400
committerGravatar Fernando Sahmkow2019-10-11 14:44:14 -0400
commite0650a2034026d8292196128d2f9decb50eeb0f3 (patch)
tree59c51153a985e7fb66e62c812250c6dacd69a82c /src/core/core_timing.h
parentCore Timing: Correct Idle and remove lefting pragma (diff)
downloadyuzu-e0650a2034026d8292196128d2f9decb50eeb0f3.tar.gz
yuzu-e0650a2034026d8292196128d2f9decb50eeb0f3.tar.xz
yuzu-e0650a2034026d8292196128d2f9decb50eeb0f3.zip
Core_Timing: Address Feedback and suppress warnings.
Diffstat (limited to 'src/core/core_timing.h')
-rw-r--r--src/core/core_timing.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/core_timing.h b/src/core/core_timing.h
index 8bba45beb..3bb88c810 100644
--- a/src/core/core_timing.h
+++ b/src/core/core_timing.h
@@ -113,7 +113,7 @@ public:
113 current_context = new_context; 113 current_context = new_context;
114 } 114 }
115 115
116 bool CurrentContextCanRun() const { 116 bool CanCurrentContextRun() const {
117 return time_slice[current_context] > 0; 117 return time_slice[current_context] > 0;
118 } 118 }
119 119