mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-01-30 13:10:55 +00:00
Remove BT_USE and PF_USEDOWN warning
someone entertained the idea of maybe removing it, so might as well put this merge request up to see if people want it
This commit is contained in:
parent
c7c9ae3847
commit
8ae5f3030f
1 changed files with 0 additions and 2 deletions
|
@ -10844,7 +10844,6 @@ static inline int lib_getenum(lua_State *L)
|
||||||
}
|
}
|
||||||
else if (fastcmp(p, "USEDOWN")) // Remove case when 2.3 nears release...
|
else if (fastcmp(p, "USEDOWN")) // Remove case when 2.3 nears release...
|
||||||
{
|
{
|
||||||
LUA_Deprecated(L, "PF_USEDOWN", "PF_SPINDOWN");
|
|
||||||
lua_pushinteger(L, (lua_Integer)PF_SPINDOWN);
|
lua_pushinteger(L, (lua_Integer)PF_SPINDOWN);
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
@ -11116,7 +11115,6 @@ static inline int lib_getenum(lua_State *L)
|
||||||
|
|
||||||
if (fastcmp(word, "BT_USE")) // Remove case when 2.3 nears release...
|
if (fastcmp(word, "BT_USE")) // Remove case when 2.3 nears release...
|
||||||
{
|
{
|
||||||
LUA_Deprecated(L, "BT_USE", "BT_SPIN");
|
|
||||||
lua_pushinteger(L, (lua_Integer)BT_SPIN);
|
lua_pushinteger(L, (lua_Integer)BT_SPIN);
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue