diff options
| author | Tilka <tilkax@gmail.com> | 2020-06-25 15:19:09 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-06-25 15:19:09 +0100 |
| commit | 4eb4b1d2b77e94141dcd5cc06b6e9584c6b62936 (patch) | |
| tree | aeb3b4c70780ad301a84216f14ff166d600d669a /Source/Core/VideoCommon/CommandProcessor.cpp | |
| parent | 502ab789d96c2300223b1c7694621612ffd7fefb (diff) | |
| parent | c9edfa0eaa0574d5b39e64f871621b6494c651ba (diff) | |
Merge pull request #8898 from JosJuice/windows-cmake-new-lambda-processor
Replace Windows CMake lambda constexpr capture workaround
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 eb571a4672..59ca391f55 100644 --- a/Source/Core/VideoCommon/CommandProcessor.cpp +++ b/Source/Core/VideoCommon/CommandProcessor.cpp @@ -196,7 +196,7 @@ void RegisterMMIO(MMIO::Mapping* mmio, u32 base) } mmio->Register(base | FIFO_BP_LO, MMIO::DirectRead<u16>(MMIO::Utils::LowPart(&fifo.CPBreakpoint)), - MMIO::ComplexWrite<u16>([WMASK_LO_ALIGN_32BIT](u32, u16 val) { + MMIO::ComplexWrite<u16>([](u32, u16 val) { WriteLow(fifo.CPBreakpoint, val & WMASK_LO_ALIGN_32BIT); })); mmio->Register(base | FIFO_BP_HI, |
