mirror of
https://github.com/holub/mame
synced 2025-04-21 07:52:35 +03:00
luaengine_debug.cpp: Fix unused lambda capture.
This commit is contained in:
parent
1bdf8d272a
commit
a480715bda
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user