all repos — mgba @ 5cda42077c114080b6b91dd7ece27fb12b08d7c8

mGBA Game Boy Advance Emulator

Core: Fix missing tailing bytes of video logs
Vicki Pfau vi@endrift.com
Mon, 24 Apr 2017 12:56:24 -0700
commit

5cda42077c114080b6b91dd7ece27fb12b08d7c8

parent

aec8b8275622c3b54ee2bebfd903d5fc051255bc

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

jump to
M src/feature/video-logger.csrc/feature/video-logger.c

@@ -834,7 +834,7 @@ if (!_readBlockHeader(context, &header)) {

return false; } if (header.blockType == mVL_BLOCK_FOOTER) { - return false; + return true; } if (header.channelId != channelId || header.blockType != mVL_BLOCK_DATA) { context->backing->seek(context->backing, header.length, SEEK_CUR);