mirror of
https://github.com/love2d/love.git
synced 2026-08-15 07:41:11 +02:00
Fixed a MSVC warning.
This commit is contained in:
@@ -201,7 +201,7 @@ namespace sdl
|
||||
ThreadVariant *v;
|
||||
if (lua_isboolean(L, 3))
|
||||
{
|
||||
v = new ThreadVariant((bool) lua_toboolean(L, 3));
|
||||
v = new ThreadVariant(luax_toboolean(L, 3));
|
||||
}
|
||||
else if (lua_isnumber(L, 3))
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user