mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-09 20:34:12 +00:00
HDB: Fix Lua Index
This commit is contained in:
parent
cea99e3fcd
commit
44ae2202aa
@ -461,7 +461,7 @@ static int cineDrawPic(lua_State *L) {
|
||||
const char *id = lua_tostring(L, 1);
|
||||
const char *pic = lua_tostring(L, 2);
|
||||
double x = lua_tonumber(L, 3);
|
||||
double y = lua_tonumber(L, 3);
|
||||
double y = lua_tonumber(L, 4);
|
||||
|
||||
g_hdb->_lua->checkParameters("cineDrawPic", 4);
|
||||
|
||||
@ -478,7 +478,7 @@ static int cineDrawMaskedPic(lua_State *L) {
|
||||
const char *id = lua_tostring(L, 1);
|
||||
const char *pic = lua_tostring(L, 2);
|
||||
double x = lua_tonumber(L, 3);
|
||||
double y = lua_tonumber(L, 3);
|
||||
double y = lua_tonumber(L, 4);
|
||||
|
||||
g_hdb->_lua->checkParameters("cineDrawMaskedPic", 4);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user