summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/CommandProcessor.cpp
diff options
context:
space:
mode:
authorJun Su <howard0su@gmail.com>2020-03-23 16:20:40 +0800
committerJun Su <howard0su@gmail.com>2020-03-24 20:14:10 +0800
commitda223a2271289cca418eedb9d404c2e1c92e5e9d (patch)
tree1fcb864a51d58f71deb2b6bc8b3f8e1b48c4dfcd /Source/Core/VideoCommon/CommandProcessor.cpp
parent62707986b7c5c70f34767e70ddf06baf0b14a7c7 (diff)
Cleanup warnings of -Wunused-lambda-capture
Remove unused lambda captures.
Diffstat (limited to 'Source/Core/VideoCommon/CommandProcessor.cpp')
-rw-r--r--Source/Core/VideoCommon/CommandProcessor.cpp2
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,