all repos — mgba @ 87758b274cb45e575ca34240cddc684e3fe03aa5

mGBA Game Boy Advance Emulator

Debugger: CLI debugger now exits when end-of-stream is reached
Jeffrey Pfau jeffrey@endrift.com
Mon, 06 Jun 2016 22:06:51 -0700
commit

87758b274cb45e575ca34240cddc684e3fe03aa5

parent

b1b5cf8a11d8f19753312b554abc8752708a7347

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

jump to
M CHANGESCHANGES

@@ -47,6 +47,7 @@ - Qt: Canonicalize file paths when loading games

- OpenGL: Add texSize uniform - Qt: Add refresh button to controller editing - ARM7: Clean up instruction decoding for future expandability + - Debugger: CLI debugger now exits when end-of-stream is reached 0.4.0: (2016-02-02) Features:
M src/debugger/cli-debugger.csrc/debugger/cli-debugger.c

@@ -617,6 +617,7 @@ HistEvent ev;

while (debugger->state == DEBUGGER_PAUSED) { line = el_gets(cliDebugger->elstate, &count); if (!line) { + debugger->state = DEBUGGER_SHUTDOWN; return; } if (line[0] == '\n') {