Added test video for soviet mission 1 and red intro.

This commit is contained in:
Justin Marshall
2020-07-15 22:06:16 -07:00
parent 95f5cecc48
commit d37e740d19
4 changed files with 4 additions and 2 deletions
+3 -2
View File
@@ -312,8 +312,9 @@ static int Script_FireSale(lua_State* L) {
* *
*=============================================================================================*/
static int Script_PlayMovie(lua_State* L) {
int ret = lua_tointeger(L, -1);
Play_Movie((VQType)ret);
//int ret = lua_tointeger(L, -1);
const char* movieName = lua_tostring(L, -1);
Play_Movie(movieName);
return 1;
}