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