all repos — mgba @ eb0b9dca0f3b7b46ad82efac3155fb86d2ae26a4

mGBA Game Boy Advance Emulator

Qt: Fix regression where video would not record if the game had already started
Jeffrey Pfau jeffrey@endrift.com
Mon, 06 Apr 2015 22:18:57 -0700
commit

eb0b9dca0f3b7b46ad82efac3155fb86d2ae26a4

parent

3449c5cb3b084493732d545c9407848bb4dff2ea

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

jump to
M CHANGESCHANGES

@@ -14,6 +14,7 @@ - ARM7: Fix SWI and IRQ timings

- GBA Audio: Force audio FIFOs to 32-bit - GBA Memory: Ensure changing the timing of a DMA reschedules it - Qt: Fix window not regaining focus after exiting savestate window + - Qt: Fix regression where video would not record if the game had already started 0.2.0: (2015-04-03) Features:
M src/platform/qt/GameController.cppsrc/platform/qt/GameController.cpp

@@ -511,6 +511,9 @@

void GameController::setAVStream(GBAAVStream* stream) { threadInterrupt(); m_threadContext.stream = stream; + if (m_gameOpen) { + m_threadContext.gba->stream = stream; + } threadContinue(); }