Fixed warnings.

This commit is contained in:
bkaradzic
2013-04-24 19:15:29 -07:00
parent 1a0e1699d9
commit 10236da0f4
3 changed files with 5 additions and 3 deletions

View File

@@ -180,7 +180,7 @@ namespace bgfx
glGetError(); // ignore error if glGetString returns NULL.
if (NULL != str)
{
return bx::hashMurmur2A(str, strlen(str) );
return bx::hashMurmur2A(str, (uint32_t)strlen(str) );
}
return 0;