all repos — mgba @ 88c1f20c4b6f05b21f6e12459f28f82db58f98f3

mGBA Game Boy Advance Emulator

GBA Audio: Allow GBAAVStream to have no video callback
Jeffrey Pfau jeffrey@endrift.com
Sun, 30 Aug 2015 22:54:53 -0700
commit

88c1f20c4b6f05b21f6e12459f28f82db58f98f3

parent

971a322f09f731b028acec543ba1d8de29ca2b90

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

jump to
M CHANGESCHANGES

@@ -10,6 +10,7 @@ Misc:

- Qt: Remove useless help icons in dialogs - GBA: Attempting to save a screenshot-style savestate should be allowed without libpng - GBA: Better memory handling with PNG savestates + - GBA Audio: Allow GBAAVStream to have no video callback 0.3.0: (2015-08-16) Features:
M src/gba/gba.csrc/gba/gba.c

@@ -790,7 +790,7 @@ }

} } - if (gba->stream) { + if (gba->stream && gba->stream->postVideoFrame) { gba->stream->postVideoFrame(gba->stream, gba->video.renderer); }