Fixed warning.

This commit is contained in:
bkaradzic 2013-09-04 21:41:01 -07:00
parent 057ee3e335
commit 9d59e31f6a

View file

@ -597,7 +597,7 @@ bool FontManager::preloadGlyph(FontHandle _handle, const wchar_t* _string)
return false;
}
for (uint32_t ii = 0, end = wcslen(_string); ii < end; ++ii)
for (uint32_t ii = 0, end = (uint32_t)wcslen(_string); ii < end; ++ii)
{
CodePoint codePoint = _string[ii];
if (!preloadGlyph(_handle, codePoint) )