mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2024-11-28 10:35:43 -05:00
Fixed warning.
This commit is contained in:
parent
057ee3e335
commit
9d59e31f6a
1 changed files with 1 additions and 1 deletions
|
@ -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) )
|
||||
|
|
Loading…
Reference in a new issue