mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-22 13:49:53 -06:00
Fix some warnings on Linux
This commit is contained in:
@ -215,7 +215,7 @@ void RasterFont::printMultilineText(const std::string& text, double start_x, dou
|
||||
continue;
|
||||
}
|
||||
|
||||
if ((u32) c < CHAR_OFFSET || (u32) c >= CHAR_COUNT + CHAR_OFFSET)
|
||||
if (c < CHAR_OFFSET || c >= CHAR_COUNT + CHAR_OFFSET)
|
||||
continue;
|
||||
|
||||
vertices[usage++] = x;
|
||||
|
Reference in New Issue
Block a user