aboutsummaryrefslogtreecommitdiff
path: root/engines/fullpipe/scenes/scene04.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/fullpipe/scenes/scene04.cpp')
-rw-r--r--engines/fullpipe/scenes/scene04.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/fullpipe/scenes/scene04.cpp b/engines/fullpipe/scenes/scene04.cpp
index b78d66d54c..4b5e105311 100644
--- a/engines/fullpipe/scenes/scene04.cpp
+++ b/engines/fullpipe/scenes/scene04.cpp
@@ -1086,13 +1086,13 @@ void updateSound() {
return;
case 1:
- if (!g_fp->_mixer->isSoundHandleActive(*g_fp->_soundStream2)) {
+ if (!g_fp->_mixer->isSoundHandleActive(g_fp->_soundStream2)) {
g_fp->playOggSound("sc4_loop.ogg", g_fp->_soundStream3);
g_vars->scene04_musicStage = 2;
}
break;
case 2:
- if (!g_fp->_mixer->isSoundHandleActive(*g_fp->_soundStream3)) {
+ if (!g_fp->_mixer->isSoundHandleActive(g_fp->_soundStream3)) {
if (g_fp->_stream2playing) { // Looop it
g_fp->playOggSound("sc4_loop.ogg", g_fp->_soundStream3);
} else {
@@ -1102,7 +1102,7 @@ void updateSound() {
}
break;
case 3:
- if (!g_fp->_mixer->isSoundHandleActive(*g_fp->_soundStream4)) {
+ if (!g_fp->_mixer->isSoundHandleActive(g_fp->_soundStream4)) {
g_vars->scene04_musicStage = 0;
}
break;