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:
parent
7e51dc55b7
commit
b90dcfeec6
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue