This commit is contained in:
Pawel Kolodziejski 2004-02-22 18:09:34 +00:00
parent 7f4272ffdc
commit 5739af6ab8

View file

@ -1019,14 +1019,14 @@ static void GetTextObjectDimensions() {
static void StartFullscreenMovie() {
bool mode = getbool(2);
pushbool(g_smush->play(lua_getstring(lua_getparam(1)), 0, 0));
pushbool(g_smush->play(luaL_check_string(1), 0, 0));
}
static void StartMovie() {
bool mode = getbool(2);
int x = lua_getparam(3);
int y = lua_getparam(4);
pushbool(g_smush->play(lua_getstring(lua_getparam(1)), x, y));
pushbool(g_smush->play(luaL_check_string(1), x, y));
}
static void IsFullscreenMoviePlaying() {