diff options
| author | JosJuice <josjuice@gmail.com> | 2020-03-26 10:37:33 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-03-26 10:37:33 +0100 |
| commit | 5988d20917b223430fc53180aa96922ceeaecfee (patch) | |
| tree | b05555b639299d4852d22ed69bb77dacd1fd1901 /Source/Core/VideoCommon/CommandProcessor.cpp | |
| parent | 4b91185056e9f140c73567a3b54444443d25af2f (diff) | |
| parent | da223a2271289cca418eedb9d404c2e1c92e5e9d (diff) | |
Merge pull request #8698 from howard0su/warning_capture
Cleanup warnings of -Wunused-lambda-capture
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, |
