mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-02 17:03:13 +00:00
ac1d5352be
The size in snprintf includes the final null character, so here 3 bytes are not enough to store a space, 2 digits and the null character. The compiler complained and the output used to display 1 digit instead of 2, for each byte. Extend this size from 3 to 4 in the snprintf call.