clenaup
This commit is contained in:
parent
7f4272ffdc
commit
5739af6ab8
1 changed files with 2 additions and 2 deletions
4
lua.cpp
4
lua.cpp
|
@ -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() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue