Remove some type conversion warnings.

This commit is contained in:
vrld
2011-12-28 14:17:10 +01:00
parent a7e040001b
commit cde8b92113
2 changed files with 6 additions and 3 deletions
@@ -93,7 +93,7 @@ namespace opengl
lua_rawgeti(L, 3 + i, k);
values[i * dimension + k - 1] = (float)lua_tonumber(L, -1);
}
lua_pop(L, dimension);
lua_pop(L, int(dimension));
}
try