diff options
Diffstat (limited to 'insane.cpp')
-rw-r--r-- | insane.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/insane.cpp b/insane.cpp index fb5ec38349..1190e9d14c 100644 --- a/insane.cpp +++ b/insane.cpp @@ -41,7 +41,7 @@ SmushPlayer::SmushPlayer(Scumm * parent) { SmushPlayer::~SmushPlayer() { } -static void smush_handler (Scumm * _scumm) { +static void smush_handler (Scumm * scumm) { h_sp->update(); } @@ -1430,7 +1430,7 @@ void SmushPlayer::startVideo(short int arg, byte *videoFile) { memset (&pcd37, 0, sizeof (PersistentCodecData37)); - _scumm->pauseBundleMusic(true); + _scumm->_sound->pauseBundleMusic(true); init(); openFile(videoFile); @@ -1505,5 +1505,5 @@ void SmushPlayer::startVideo(short int arg, byte *videoFile) { _scumm->_insaneState = 0; _scumm->exitCutscene(); - _scumm->pauseBundleMusic(false); + _scumm->_sound->pauseBundleMusic(false); } |