We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 93ae066 + 38b8b1a commit 891fb37Copy full SHA for 891fb37
src/core/pcsxlua.cc
@@ -47,7 +47,7 @@ LuaBreakpoint* addBreakpoint(uint32_t address, PCSX::Debug::BreakpointType type,
47
bool (*invoker)(uint32_t address, unsigned width, const char* cause), const char* label) {
48
LuaBreakpoint* ret = new LuaBreakpoint();
49
auto* bp = PCSX::g_emulator->m_debug->addBreakpoint(
50
- address, type, width, std::string("Lua Breakpoint ") + cause, label,
+ address, type, width, std::string("Lua Breakpoint"), cause,
51
[invoker](const PCSX::Debug::Breakpoint* self, uint32_t address, unsigned width, const char* cause) {
52
try {
53
return invoker(address, width, cause);
0 commit comments