remove trailing spaces

This commit is contained in:
Ray
2025-01-11 19:36:26 +01:00
parent 62d8969a56
commit 49b905077d
2 changed files with 13 additions and 13 deletions

View File

@@ -247,8 +247,8 @@ extern void LoadFontDefault(void)
// we must consider data as little-endian order (alpha + gray)
((unsigned short *)imFont.data)[i + j] = 0xffff;
}
else
{
else
{
((unsigned char *)imFont.data)[(i + j)*sizeof(short)] = 0xFF;
((unsigned char *)imFont.data)[(i + j)*sizeof(short) + 1] = 0x00;
}