mirror of
https://github.com/rvtr/unlaunch-installer_dev.git
synced 2026-01-26 13:43:08 -05:00
Fix off by one error in color table array
This commit is contained in:
parent
6edcde25c3
commit
3cf702f8f4
@ -24,7 +24,7 @@ struct Gif {
|
||||
} __attribute__ ((__packed__)) header;
|
||||
static_assert(sizeof(Header) == 13);
|
||||
|
||||
std::array<uint8_t, 255 * 3> colorTable;
|
||||
std::array<uint8_t, 256 * 3> colorTable;
|
||||
size_t numColors;
|
||||
|
||||
struct Frame {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user