diff options
author | Sven Hesse | 2007-08-11 20:55:43 +0000 |
---|---|---|
committer | Sven Hesse | 2007-08-11 20:55:43 +0000 |
commit | 771741647ddc6a577b00b553165c721ca64e77c5 (patch) | |
tree | 924ca4db2d979375c4c7edae3d7d4fdae11a5cc0 /engines | |
parent | 9167422ce3b479671419784c6b26bb2c8ee799f5 (diff) | |
download | scummvm-rg350-771741647ddc6a577b00b553165c721ca64e77c5.tar.gz scummvm-rg350-771741647ddc6a577b00b553165c721ca64e77c5.tar.bz2 scummvm-rg350-771741647ddc6a577b00b553165c721ca64e77c5.zip |
This should fix bug #1770655 and another one eriktorbjorn experienced in the CD version of Lost in Time in one go! :D
svn-id: r28535
Diffstat (limited to 'engines')
-rw-r--r-- | engines/gob/videoplayer.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/engines/gob/videoplayer.cpp b/engines/gob/videoplayer.cpp index e72354a169..6cc14fd3db 100644 --- a/engines/gob/videoplayer.cpp +++ b/engines/gob/videoplayer.cpp @@ -132,6 +132,7 @@ bool VideoPlayer::openVideo(const char *video, int16 x, int16 y, int16 flags, Ty return false; } + strcpy(_curFile, fileName); _video->setXY(x, y); if (!(flags & kFlagNoVideo)) { |