diff options
Diffstat (limited to 'Libraries/LibGfx')
-rw-r--r-- | Libraries/LibGfx/BMPLoader.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Libraries/LibGfx/BMPLoader.cpp b/Libraries/LibGfx/BMPLoader.cpp index 824203f9be..84d7d32ea6 100644 --- a/Libraries/LibGfx/BMPLoader.cpp +++ b/Libraries/LibGfx/BMPLoader.cpp @@ -1059,7 +1059,7 @@ static bool uncompress_bmp_rle_data(BMPLoadingContext& context, ByteBuffer& buff if (!result.has_value()) return false; byte = result.value(); - for (u8 i = 0; i < pixel_count; ++i) { + for (u16 i = 0; i < pixel_count; ++i) { if (compression != Compression::RLE4) { if (!set_byte(byte, true)) return false; |