mirror of
https://github.com/love2d/love.git
synced 2026-08-19 04:06:17 +02:00
Rename SpriteBatch:setq to setg
This commit is contained in:
@@ -84,7 +84,7 @@ int w_SpriteBatch_set(lua_State *L)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
int w_SpriteBatch_setq(lua_State *L)
|
int w_SpriteBatch_setg(lua_State *L)
|
||||||
{
|
{
|
||||||
SpriteBatch *t = luax_checkspritebatch(L, 1);
|
SpriteBatch *t = luax_checkspritebatch(L, 1);
|
||||||
int index = luaL_checkinteger(L, 2);
|
int index = luaL_checkinteger(L, 2);
|
||||||
@@ -202,7 +202,7 @@ static const luaL_Reg functions[] =
|
|||||||
{ "add", w_SpriteBatch_add },
|
{ "add", w_SpriteBatch_add },
|
||||||
{ "addg", w_SpriteBatch_addg },
|
{ "addg", w_SpriteBatch_addg },
|
||||||
{ "set", w_SpriteBatch_set },
|
{ "set", w_SpriteBatch_set },
|
||||||
{ "setq", w_SpriteBatch_setq },
|
{ "setg", w_SpriteBatch_setg },
|
||||||
{ "clear", w_SpriteBatch_clear },
|
{ "clear", w_SpriteBatch_clear },
|
||||||
{ "bind", w_SpriteBatch_bind },
|
{ "bind", w_SpriteBatch_bind },
|
||||||
{ "unbind", w_SpriteBatch_unbind },
|
{ "unbind", w_SpriteBatch_unbind },
|
||||||
|
|||||||
@@ -35,7 +35,7 @@ SpriteBatch *luax_checkspritebatch(lua_State *L, int idx);
|
|||||||
int w_SpriteBatch_add(lua_State *L);
|
int w_SpriteBatch_add(lua_State *L);
|
||||||
int w_SpriteBatch_addq(lua_State *L);
|
int w_SpriteBatch_addq(lua_State *L);
|
||||||
int w_SpriteBatch_set(lua_State *L);
|
int w_SpriteBatch_set(lua_State *L);
|
||||||
int w_SpriteBatch_setq(lua_State *L);
|
int w_SpriteBatch_setg(lua_State *L);
|
||||||
int w_SpriteBatch_clear(lua_State *L);
|
int w_SpriteBatch_clear(lua_State *L);
|
||||||
int w_SpriteBatch_bind(lua_State *L);
|
int w_SpriteBatch_bind(lua_State *L);
|
||||||
int w_SpriteBatch_unbind(lua_State *L);
|
int w_SpriteBatch_unbind(lua_State *L);
|
||||||
|
|||||||
Reference in New Issue
Block a user