mirror of
https://github.com/melonDS-emu/melonDS.git
synced 2025-07-25 23:29:55 -06:00
make it possible to change gdb stub settings without destroying/recreating a NDS
This commit is contained in:
@ -227,6 +227,15 @@ void NDS::SetJITArgs(std::optional<JITArgs> args) noexcept
|
||||
}
|
||||
#endif
|
||||
|
||||
#ifdef GDBSTUB_ENABLED
|
||||
void NDS::SetGdbArgs(std::optional<GDBArgs> args) noexcept
|
||||
{
|
||||
ARM9.SetGdbArgs(args);
|
||||
ARM7.SetGdbArgs(args);
|
||||
EnableGDBStub = args.has_value();
|
||||
}
|
||||
#endif
|
||||
|
||||
void NDS::InitTimings()
|
||||
{
|
||||
// TODO, eventually:
|
||||
|
Reference in New Issue
Block a user