gbdk-2020 | GameBoy Development Kit |
| download: https://git.y1.nz/archives/gbdk.tar.gz | |
| README | Files | Log | Refs | LICENSE |
commit 3b939fae78043f4393b5758a205f694047224c7c parent b9b06a4705ef86d8bc60c45c6ee5f67c622ffdff Author: bbbbbr <bbbbbr@users.noreply.github.com> Date: Sun, 1 May 2022 18:26:58 -0700 gbcompress: RLE: fix failure to flush data at end Diffstat:
| M | gbdk-support/gbcompress/rlecompress.c | 2 | ++ |
1 file changed, 2 insertions(+), 0 deletions(-)
diff --git a/gbdk-support/gbcompress/rlecompress.c b/gbdk-support/gbcompress/rlecompress.c @@ -170,6 +170,8 @@ uint32_t rlecompress_buf(uint8_t * inBuf, uint32_t size_in, uint8_t ** pp_outBuf } } + // Flush any trailing data + rle_commit(); write_end_of_data(); return FoutIndex;
This webpage is intended to be an accessible preview of this repository. To get a fuller picture, clone it and use the git CLI.