diff options
| author | Markus Wick <degasus@users.noreply.github.com> | 2016-08-22 16:49:40 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-08-22 16:49:40 +0200 |
| commit | 10d20d47aa8d081c74293d4e4005674ac5d00bb5 (patch) | |
| tree | daa3e407866b0748656485cb61f47275fdac595c /Source/Core/VideoCommon/CommandProcessor.cpp | |
| parent | 3156e8590be0918c120e0655d88163de8a9172c5 (diff) | |
| parent | 5635d4b709a103fd8fcef2ed9be615296cb020e7 (diff) | |
Merge pull request #4132 from lioncash/enum-fifo
Fifo: Make SyncGPUReason an enum class
Diffstat (limited to 'Source/Core/VideoCommon/CommandProcessor.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/CommandProcessor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/VideoCommon/CommandProcessor.cpp b/Source/Core/VideoCommon/CommandProcessor.cpp index 0cf8dd3b7b..287d93d28f 100644 --- a/Source/Core/VideoCommon/CommandProcessor.cpp +++ b/Source/Core/VideoCommon/CommandProcessor.cpp @@ -238,7 +238,7 @@ void RegisterMMIO(MMIO::Mapping* mmio, u32 base) MMIO::DirectRead<u16>(MMIO::Utils::HighPart(&fifo.CPReadWriteDistance)), MMIO::ComplexWrite<u16>([](u32, u16 val) { WriteHigh(fifo.CPReadWriteDistance, val); - Fifo::SyncGPU(Fifo::SYNC_GPU_OTHER); + Fifo::SyncGPU(Fifo::SyncGPUReason::Other); if (fifo.CPReadWriteDistance == 0) { GPFifo::ResetGatherPipe(); |
