mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2026-08-20 09:24:59 -05:00
Merge pull request #1142 from lioncash/linucks
Fix some warnings on Linux
This commit is contained in:
@@ -216,7 +216,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