mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-08 09:09:04 +00:00
Fix some warnings on Linux
This commit is contained in:
parent
9e2b9e2471
commit
836ff6d506
3 changed files with 3 additions and 6 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue