diff options
Diffstat (limited to 'engines/sci/sfx/core.cpp')
-rw-r--r-- | engines/sci/sfx/core.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/sci/sfx/core.cpp b/engines/sci/sfx/core.cpp index 01110bb32a..a427a5fd7f 100644 --- a/engines/sci/sfx/core.cpp +++ b/engines/sci/sfx/core.cpp @@ -26,6 +26,7 @@ /* Sound subsystem core: Event handler, sound player dispatching */ #include "sci/tools.h" +#include "sci/sfx/core.h" #include "sci/sfx/iterator_internal.h" #include "sci/sfx/player.h" #include "sci/sfx/sci_midi.h" @@ -230,8 +231,7 @@ static void _update_single_song(sfx_state_t *self) { if (!self->song) sciprintf(" New song:"); else - sciprintf(" pausing %08lx, now playing", - self->song->handle); + sciprintf(" pausing %08lx, now playing", self->song->handle); if (newsong) sciprintf(" %08lx\n", newsong->handle); |