mirror of
https://github.com/love2d/love.git
synced 2026-08-17 19:23:38 +02:00
Fix spelling misstake in setGrab wrapper
This commit is contained in:
@@ -89,7 +89,7 @@ namespace sdl
|
|||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
int w_setGrap(lua_State * L)
|
int w_setGrab(lua_State * L)
|
||||||
{
|
{
|
||||||
bool b = luax_toboolean(L, 1);
|
bool b = luax_toboolean(L, 1);
|
||||||
instance->setGrab(b);
|
instance->setGrab(b);
|
||||||
@@ -111,7 +111,7 @@ namespace sdl
|
|||||||
{ "setVisible", w_setVisible },
|
{ "setVisible", w_setVisible },
|
||||||
{ "isVisible", w_isVisible },
|
{ "isVisible", w_isVisible },
|
||||||
{ "getPosition", w_getPosition },
|
{ "getPosition", w_getPosition },
|
||||||
{ "setGrab", w_setGrap },
|
{ "setGrab", w_setGrab },
|
||||||
{ "isGrabbed", w_isGrabbed },
|
{ "isGrabbed", w_isGrabbed },
|
||||||
{ 0, 0 }
|
{ 0, 0 }
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user