mirror of
https://github.com/libretro/scummvm.git
synced 2025-03-05 17:57:14 +00:00
SWORD25: Remove now unused function
This commit is contained in:
parent
75f1d2e259
commit
ad688f9d6f
@ -280,15 +280,6 @@ void lua_reallocstack(lua_State *L, int newsize) {
|
||||
correctStack(L, oldstack);
|
||||
}
|
||||
|
||||
void lua_growstack(lua_State *L, int n) {
|
||||
// Double size is enough?
|
||||
if (n <= L->stacksize) {
|
||||
lua_reallocstack(L, 2 * L->stacksize);
|
||||
} else {
|
||||
lua_reallocstack(L, L->stacksize + n);
|
||||
}
|
||||
}
|
||||
|
||||
void lua_reallocCallInfo(lua_State *lauState, int newsize) {
|
||||
CallInfo *oldci = lauState->base_ci;
|
||||
lua_reallocvector(lauState, lauState->base_ci, lauState->size_ci, newsize, CallInfo);
|
||||
|
@ -90,7 +90,6 @@ void unboxUpValue(lua_State *luaState);
|
||||
size_t appendStackToStack_reverse(lua_State *from, lua_State *to);
|
||||
void correctStack(lua_State *L, TValue *oldstack);
|
||||
void lua_reallocstack(lua_State *L, int newsize);
|
||||
void lua_growstack(lua_State *L, int n);
|
||||
|
||||
void lua_reallocCallInfo(lua_State *lauState, int newsize);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user