summaryrefslogtreecommitdiffstatshomepage
path: root/src/frontend
diff options
context:
space:
mode:
author Vas Crabb <vas@vastheman.com>2020-11-30 12:49:36 +1100
committer Vas Crabb <vas@vastheman.com>2020-11-30 12:49:36 +1100
commita480715bda615adb0a77efb092d76993d1200698 (patch)
tree9eb6e7d36d965ccff3807e8e2389e0bf5878b1c9 /src/frontend
parent1bdf8d272a32d161e11c96984bf3614de3210003 (diff)
luaengine_debug.cpp: Fix unused lambda capture.
Diffstat (limited to 'src/frontend')
-rw-r--r--src/frontend/mame/luaengine_debug.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/frontend/mame/luaengine_debug.cpp b/src/frontend/mame/luaengine_debug.cpp
index 8fa89e23754..4cbff8d799f 100644
--- a/src/frontend/mame/luaengine_debug.cpp
+++ b/src/frontend/mame/luaengine_debug.cpp
@@ -171,7 +171,7 @@ void lua_engine::initialize_debug()
};
device_debug_type["go"] = &device_debug::go;
device_debug_type["bpset"] =
- [this] (device_debug &dev, offs_t address, char const *cond, char const *act)
+ [] (device_debug &dev, offs_t address, char const *cond, char const *act)
{
int result(dev.breakpoint_set(address, cond, act));
dev.device().machine().debug_view().update_all(DVT_DISASSEMBLY);