Skip to content

Commit 891fb37

Browse files
authored
Merge pull request #1921 from acemon33/main
Fix: correct the setting label for lua breakpoints
2 parents 93ae066 + 38b8b1a commit 891fb37

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core/pcsxlua.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ LuaBreakpoint* addBreakpoint(uint32_t address, PCSX::Debug::BreakpointType type,
4747
bool (*invoker)(uint32_t address, unsigned width, const char* cause), const char* label) {
4848
LuaBreakpoint* ret = new LuaBreakpoint();
4949
auto* bp = PCSX::g_emulator->m_debug->addBreakpoint(
50-
address, type, width, std::string("Lua Breakpoint ") + cause, label,
50+
address, type, width, std::string("Lua Breakpoint"), cause,
5151
[invoker](const PCSX::Debug::Breakpoint* self, uint32_t address, unsigned width, const char* cause) {
5252
try {
5353
return invoker(address, width, cause);

0 commit comments

Comments
 (0)