diff options
| author | 2020-02-10 14:45:08 -0400 | |
|---|---|---|
| committer | 2020-06-18 16:29:21 -0400 | |
| commit | 1f7dd36499786d373b143a4437d4c32e077a32aa (patch) | |
| tree | 26d21b113d85c6630f3ff67f7affc7c1b6f508a5 /src/core/host_timing.cpp | |
| parent | Common: Make MinGW build use Windows Fibers instead of fcontext_t (diff) | |
| download | yuzu-1f7dd36499786d373b143a4437d4c32e077a32aa.tar.gz yuzu-1f7dd36499786d373b143a4437d4c32e077a32aa.tar.xz yuzu-1f7dd36499786d373b143a4437d4c32e077a32aa.zip | |
Common/Tests: Address Feedback
Diffstat (limited to 'src/core/host_timing.cpp')
| -rw-r--r-- | src/core/host_timing.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/host_timing.cpp b/src/core/host_timing.cpp index c734a118e..be80d9f8e 100644 --- a/src/core/host_timing.cpp +++ b/src/core/host_timing.cpp | |||
| @@ -76,11 +76,11 @@ void CoreTiming::SyncPause(bool is_paused) { | |||
| 76 | ; | 76 | ; |
| 77 | } | 77 | } |
| 78 | 78 | ||
| 79 | bool CoreTiming::IsRunning() { | 79 | bool CoreTiming::IsRunning() const { |
| 80 | return !paused_set; | 80 | return !paused_set; |
| 81 | } | 81 | } |
| 82 | 82 | ||
| 83 | bool CoreTiming::HasPendingEvents() { | 83 | bool CoreTiming::HasPendingEvents() const { |
| 84 | return !(wait_set && event_queue.empty()); | 84 | return !(wait_set && event_queue.empty()); |
| 85 | } | 85 | } |
| 86 | 86 | ||