diff options
| author | degasus <wickmarkus@web.de> | 2015-05-30 02:42:32 +0200 |
|---|---|---|
| committer | degasus <wickmarkus@web.de> | 2015-05-30 12:58:09 +0200 |
| commit | bfa61105d5a96306a98fa807c3f94b0b9178591d (patch) | |
| tree | ea7fcf9980b25898b0f413da06b14744ae48db52 /Source/Core/VideoCommon/Fifo.cpp | |
| parent | 02a3a063c346cf0372a51d4f1133dc436e9b22c0 (diff) | |
Common: Update BlockingLoop to only use one atomic.
This merges two atomic<bool> into one atomic<int>.
We did move the bit from one bool to another, now we can use operator--.
Diffstat (limited to 'Source/Core/VideoCommon/Fifo.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/Fifo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/VideoCommon/Fifo.cpp b/Source/Core/VideoCommon/Fifo.cpp index 5e482f3670..048916f28c 100644 --- a/Source/Core/VideoCommon/Fifo.cpp +++ b/Source/Core/VideoCommon/Fifo.cpp @@ -368,7 +368,7 @@ void RunGpuLoop() // don't release the GPU running state on sync GPU waits fifo.isGpuReadingData = !run_loop; } - }); + }, 100); AsyncRequests::GetInstance()->SetEnable(false); AsyncRequests::GetInstance()->SetPassthrough(true); |
