1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-16 03:23:15 +01:00

Fixed warning in sawyerencoding.c

This commit is contained in:
Hielke Morsink
2016-05-15 01:10:37 +02:00
parent c7a8e0cab7
commit d7aacfcde6

View File

@@ -298,7 +298,7 @@ static size_t decode_chunk_rle(const uint8* src_buffer, uint8* dst_buffer, size_
dst = dst_buffer;
for (int i = 0; i < length; i++) {
for (size_t i = 0; i < length; i++) {
rleCodeByte = src_buffer[i];
if (rleCodeByte & 128) {
i++;