diff options
author | Paul Gilbert | 2016-04-10 14:46:59 -0400 |
---|---|---|
committer | Paul Gilbert | 2016-07-10 16:10:49 -0400 |
commit | 9db15f6967c8f559e34824213707ed76b45d666e (patch) | |
tree | b7b6446fd5925bfed4f808a6735b155686b51cca /engines/titanic/support | |
parent | 1ee3f334d39be6944e643c22cd376d5ae4ffaaf5 (diff) | |
download | scummvm-rg350-9db15f6967c8f559e34824213707ed76b45d666e.tar.gz scummvm-rg350-9db15f6967c8f559e34824213707ed76b45d666e.tar.bz2 scummvm-rg350-9db15f6967c8f559e34824213707ed76b45d666e.zip |
TITANIC: Allow television video to play multiple times
Diffstat (limited to 'engines/titanic/support')
-rw-r--r-- | engines/titanic/support/movie.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/engines/titanic/support/movie.cpp b/engines/titanic/support/movie.cpp index 6599093226..dd0792caa4 100644 --- a/engines/titanic/support/movie.cpp +++ b/engines/titanic/support/movie.cpp @@ -75,6 +75,7 @@ void OSMovie::play(int v1, CVideoSurface *surface) { void OSMovie::play(int v1, int v2, int v3, bool v4) { warning("TODO: OSMovie::play properly"); //setFrame(v1); ? + _video->seek(0); _video->start(); g_vm->_activeMovies.push_back(this); _state = MOVIE_NONE; |