all repos — mgba @ 01832ec513b83ba554f47f45997d2a8b24606c74

mGBA Game Boy Advance Emulator

Qt: Ensure CLI backend is attached when submitting commands (fixes #662)
Vicki Pfau vi@endrift.com
Fri, 21 Apr 2017 16:21:50 -0700
commit

01832ec513b83ba554f47f45997d2a8b24606c74

parent

8b805b39099eb7c1f41be9401d34ae6c6aa6f420

2 files changed, 2 insertions(+), 0 deletions(-)

jump to
M CHANGESCHANGES

@@ -41,6 +41,7 @@ - Qt: Fix crash when changing audio settings after a game is closed

- GBA BIOS: Fix ArcTan sign in HLE BIOS - GBA BIOS: Fix ArcTan2 sign in HLE BIOS (fixes mgba.io/i/689) - GBA Video: Don't update background scanline params in mode 0 (fixes mgba.io/i/377) + - Qt: Ensure CLI backend is attached when submitting commands (fixes mgba.io/i/662) Misc: - SDL: Remove scancode key input - GBA Video: Clean up unused timers
M src/platform/qt/DebuggerConsoleController.cppsrc/platform/qt/DebuggerConsoleController.cpp

@@ -40,6 +40,7 @@ }

void DebuggerConsoleController::attachInternal() { mCore* core = m_gameController->thread()->core; + CLIDebuggerAttachBackend(&m_cliDebugger, &m_backend.d); CLIDebuggerAttachSystem(&m_cliDebugger, core->cliDebuggerSystem(core)); }