diff options
author | Eugene Sandulenko | 2016-11-25 18:51:51 +0100 |
---|---|---|
committer | Eugene Sandulenko | 2016-11-25 18:53:16 +0100 |
commit | b5b5c4f341530c41c73cc0d97e7ddae9cbc1d926 (patch) | |
tree | 29ac9e6d51fd4cd17e4ebe9d1f66ff93abd0cd9d /engines/fullpipe | |
parent | 1523f987c38cdebcaa351ef1e05f3f7e81a9ce92 (diff) | |
download | scummvm-rg350-b5b5c4f341530c41c73cc0d97e7ddae9cbc1d926.tar.gz scummvm-rg350-b5b5c4f341530c41c73cc0d97e7ddae9cbc1d926.tar.bz2 scummvm-rg350-b5b5c4f341530c41c73cc0d97e7ddae9cbc1d926.zip |
FULLPIPE: Start final music
Diffstat (limited to 'engines/fullpipe')
-rw-r--r-- | engines/fullpipe/scenes/sceneFinal.cpp | 4 | ||||
-rw-r--r-- | engines/fullpipe/sound.cpp | 2 |
2 files changed, 2 insertions, 4 deletions
diff --git a/engines/fullpipe/scenes/sceneFinal.cpp b/engines/fullpipe/scenes/sceneFinal.cpp index 8b3ecb1025..beda340109 100644 --- a/engines/fullpipe/scenes/sceneFinal.cpp +++ b/engines/fullpipe/scenes/sceneFinal.cpp @@ -70,8 +70,8 @@ void sceneHandlerFinal_endFinal() { g_vars->sceneFinal_var01 = 0; } -void sceneHandlerFinal_startMusic(const char *track) { - warning("STUB: sceneHandlerFinal_startMusic()"); +void sceneHandlerFinal_startMusic(char *track) { + g_fp->startSoundStream1(track); } void sceneHandlerFinal_goto4() { diff --git a/engines/fullpipe/sound.cpp b/engines/fullpipe/sound.cpp index 0c3eb02aa3..e68115a7dd 100644 --- a/engines/fullpipe/sound.cpp +++ b/engines/fullpipe/sound.cpp @@ -368,8 +368,6 @@ int FullpipeEngine::getSceneTrack() { } void FullpipeEngine::startSoundStream1(char *trackName) { - warning("STUB: FullpipeEngine::startSoundStream1(%s)", trackName); - stopAllSoundStreams(); #ifdef USE_VORBIS |