mirror of
https://github.com/love2d/love.git
synced 2026-08-15 07:41:11 +02:00
Renamed love.window.isFullscreen to love.window.getFullscreen (resolves issue #721)
This commit is contained in:
@@ -212,7 +212,7 @@ int w_setFullscreen(lua_State *L)
|
||||
return 1;
|
||||
}
|
||||
|
||||
int w_isFullscreen(lua_State *L)
|
||||
int w_getFullscreen(lua_State *L)
|
||||
{
|
||||
int w, h;
|
||||
WindowFlags flags;
|
||||
@@ -321,7 +321,7 @@ static const luaL_Reg functions[] =
|
||||
{ "getMode", w_getMode },
|
||||
{ "getModes", w_getModes },
|
||||
{ "setFullscreen", w_setFullscreen },
|
||||
{ "isFullscreen", w_isFullscreen },
|
||||
{ "getFullscreen", w_getFullscreen },
|
||||
{ "isCreated", w_isCreated },
|
||||
{ "getWidth", w_getWidth },
|
||||
{ "getHeight", w_getHeight },
|
||||
|
||||
Reference in New Issue
Block a user