1
0
Fork 0
mirror of https://github.com/AquariaOSE/Aquaria.git synced 2025-07-03 22:44:32 +00:00

fix truncation in glfont2.h

This commit is contained in:
fgenesis 2025-04-16 12:12:22 +02:00
parent 7e51dc55b7
commit b90dcfeec6

View file

@ -99,7 +99,7 @@ public:
for (i = 0; i < sz; i++)
{
//Make sure character is in range
unsigned int c = (unsigned char)text[i];
unsigned int c = (unsigned int)text[i];
if (c < header.start_char || c > header.end_char)
continue;