Fix harmless warnings.

This commit is contained in:
comex
2014-03-27 23:55:30 -04:00
parent b5654a2464
commit 92dd498fa7
2 changed files with 2 additions and 2 deletions

View File

@ -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;