mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-28 19:58:53 +00:00
Fix harmless warnings.
This commit is contained in:
parent
b5654a2464
commit
92dd498fa7
2 changed files with 2 additions and 2 deletions
|
@ -213,7 +213,7 @@ void RasterFont::printMultilineText(const std::string& text, double start_x, dou
|
|||
continue;
|
||||
}
|
||||
|
||||
if (c < char_offset || c >= char_count+char_offset)
|
||||
if ((u32) c < char_offset || (u32) c >= char_count+char_offset)
|
||||
continue;
|
||||
|
||||
vertices[usage++] = x;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue