Add more logging for Emulator Stop events

This should give us more insight into the conditions that cause emulation stops.
This may also help find false issue reports.
This commit is contained in:
Megamouse 2021-10-31 03:13:37 +01:00
parent 33e80a733d
commit f258ae795c
8 changed files with 62 additions and 12 deletions

View file

@ -715,6 +715,7 @@ bool gdb_thread::cmd_attached_to_what(gdb_cmd&)
bool gdb_thread::cmd_kill(gdb_cmd&)
{
GDB.notice("Kill command issued");
Emu.Stop();
return true;
}