diff options
| author | Travis Howell | 2006-04-17 12:05:45 +0000 |
|---|---|---|
| committer | Travis Howell | 2006-04-17 12:05:45 +0000 |
| commit | 82dfef4ce2c65dd3c345628eac19cfc3ccb4cbb9 (patch) | |
| tree | 5ee3d78362721348b20a51f4f84c605010c9b494 /engines/simon/items.cpp | |
| parent | 85158181cf9bd56b6c46c735182391ab3e692932 (diff) | |
| download | scummvm-rg350-82dfef4ce2c65dd3c345628eac19cfc3ccb4cbb9.tar.gz scummvm-rg350-82dfef4ce2c65dd3c345628eac19cfc3ccb4cbb9.tar.bz2 scummvm-rg350-82dfef4ce2c65dd3c345628eac19cfc3ccb4cbb9.zip | |
Improve sound support in FF and add MoviePlayer class
svn-id: r21975
Diffstat (limited to 'engines/simon/items.cpp')
| -rw-r--r-- | engines/simon/items.cpp | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/engines/simon/items.cpp b/engines/simon/items.cpp index 7a75bec70f..5f58523fd4 100644 --- a/engines/simon/items.cpp +++ b/engines/simon/items.cpp @@ -1926,18 +1926,13 @@ void SimonEngine::o3_mouseOff() { void SimonEngine::o3_loadSmack() { // 182: load video file _videoName = getStringPtrByID(getNextStringID()); - debug(0,"Load video file: %s", _videoName); } void SimonEngine::o3_playSmack() { // 183: play video debug(0, "Play video %s", _videoName); - MoviePlayer p; - if (p.open((const char *)_videoName)) { - p.play(); - p.close(); - } + _moviePlay->open((const char *)_videoName); } void SimonEngine::o3_centreScroll() { |
