diff options
| author | Eugene Sandulenko | 2013-12-14 14:56:56 +0200 | 
|---|---|---|
| committer | Eugene Sandulenko | 2013-12-14 15:15:10 +0200 | 
| commit | a917e9d6fe96cbf4ffb3521fdedf6f9ad5e6fe30 (patch) | |
| tree | b9f6846bda200bdaf448229ebb75fecaac8513bf | |
| parent | 625ce270da5aaaa6f1ff34f2e4b1779c48766117 (diff) | |
| download | scummvm-rg350-a917e9d6fe96cbf4ffb3521fdedf6f9ad5e6fe30.tar.gz scummvm-rg350-a917e9d6fe96cbf4ffb3521fdedf6f9ad5e6fe30.tar.bz2 scummvm-rg350-a917e9d6fe96cbf4ffb3521fdedf6f9ad5e6fe30.zip  | |
FULLPIPE: Add basic logic to sceneHandler04_stopSound(). This completes scene04
| -rw-r--r-- | engines/fullpipe/scenes/scene04.cpp | 6 | 
1 files changed, 6 insertions, 0 deletions
diff --git a/engines/fullpipe/scenes/scene04.cpp b/engines/fullpipe/scenes/scene04.cpp index cd0b40fee2..875b38f92e 100644 --- a/engines/fullpipe/scenes/scene04.cpp +++ b/engines/fullpipe/scenes/scene04.cpp @@ -879,6 +879,8 @@ void sceneHandler04_showCoin() {  }  void sceneHandler04_stopSound() { +	g_vars->scene04_soundPlaying = 0; +  	warning("STUB: sceneHandler04_stopSound()");  } @@ -1018,6 +1020,10 @@ void sceneHandler04_liftBottle() {  void sceneHandler04_startSounds(const char *snd1, const char *snd2, const char *snd3) {  	warning("STUB: sceneHandler04_startSounds()"); + +	// playFile(snd1); +	// playFile(snd2); +	// playFile(snd3);  }  void sceneHandler04_goClock() {  | 
