mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 13:20:27 -06:00
Use GDB_SIG* enum instead of the system's macros, as the latter mightn't be included or might have a different value.
This commit is contained in:
@ -252,7 +252,7 @@ static void gdb_read_command()
|
||||
else if (c == 0x03)
|
||||
{
|
||||
CPU::Break();
|
||||
gdb_signal(SIGTRAP);
|
||||
gdb_signal(GDB_SIGTRAP);
|
||||
return;
|
||||
}
|
||||
else if (c != GDB_STUB_START)
|
||||
|
Reference in New Issue
Block a user