all repos — mgba @ 2f1937f953af4d6986d00a2fa48ebf7f91408cdf

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

2f1937f953af4d6986d00a2fa48ebf7f91408cdf

parent

1dcd40a5e99ef08f4ebbb7b7d6c66138cff659ac

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

jump to
M CHANGESCHANGES

@@ -8,6 +8,7 @@ - GBA Audio: FIFOs should not poll DMAs that are not scheduled for audio

- Qt: Fix "QOpenGLContext::swapBuffers() called with non-exposed window" warning - 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(); }