mirror of https://github.com/mgba-emu/mgba.git
GBA Audio: Allow GBAAVStream to have no video callback
This commit is contained in:
parent
971a322f09
commit
88c1f20c4b
1
CHANGES
1
CHANGES
|
@ -10,6 +10,7 @@ Misc:
|
||||||
- Qt: Remove useless help icons in dialogs
|
- Qt: Remove useless help icons in dialogs
|
||||||
- GBA: Attempting to save a screenshot-style savestate should be allowed without libpng
|
- GBA: Attempting to save a screenshot-style savestate should be allowed without libpng
|
||||||
- GBA: Better memory handling with PNG savestates
|
- GBA: Better memory handling with PNG savestates
|
||||||
|
- GBA Audio: Allow GBAAVStream to have no video callback
|
||||||
|
|
||||||
0.3.0: (2015-08-16)
|
0.3.0: (2015-08-16)
|
||||||
Features:
|
Features:
|
||||||
|
|
|
@ -790,7 +790,7 @@ void GBAFrameEnded(struct GBA* gba) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (gba->stream) {
|
if (gba->stream && gba->stream->postVideoFrame) {
|
||||||
gba->stream->postVideoFrame(gba->stream, gba->video.renderer);
|
gba->stream->postVideoFrame(gba->stream, gba->video.renderer);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue