mirror of https://github.com/mgba-emu/mgba.git
Qt: Fix regression where video would not record if the game had already started
This commit is contained in:
parent
3449c5cb3b
commit
eb0b9dca0f
1
CHANGES
1
CHANGES
|
@ -14,6 +14,7 @@ Bugfixes:
|
||||||
- GBA Audio: Force audio FIFOs to 32-bit
|
- GBA Audio: Force audio FIFOs to 32-bit
|
||||||
- GBA Memory: Ensure changing the timing of a DMA reschedules it
|
- GBA Memory: Ensure changing the timing of a DMA reschedules it
|
||||||
- Qt: Fix window not regaining focus after exiting savestate window
|
- 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)
|
0.2.0: (2015-04-03)
|
||||||
Features:
|
Features:
|
||||||
|
|
|
@ -511,6 +511,9 @@ void GameController::setTurbo(bool set, bool forced) {
|
||||||
void GameController::setAVStream(GBAAVStream* stream) {
|
void GameController::setAVStream(GBAAVStream* stream) {
|
||||||
threadInterrupt();
|
threadInterrupt();
|
||||||
m_threadContext.stream = stream;
|
m_threadContext.stream = stream;
|
||||||
|
if (m_gameOpen) {
|
||||||
|
m_threadContext.gba->stream = stream;
|
||||||
|
}
|
||||||
threadContinue();
|
threadContinue();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue