diff options
| author | Lioncash <mathew1800@gmail.com> | 2016-08-18 22:35:58 -0400 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2016-08-18 22:35:58 -0400 |
| commit | 5635d4b709a103fd8fcef2ed9be615296cb020e7 (patch) | |
| tree | 3e6b00be65667fa3ce8f06a27774562970f9111b /Source/Core/VideoCommon/CommandProcessor.cpp | |
| parent | 40f4308dc2120ce4e105008f3cb46b6a1c553e64 (diff) | |
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(); |
