Merge pull request #222 from comex/more-clang-fixes

More clang fixes
This commit is contained in:
Pierre Bourdon
2014-03-30 13:24:08 +02:00
5 changed files with 14 additions and 13 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;