diff options
author | Ori Avtalion | 2016-04-14 16:10:21 +0300 |
---|---|---|
committer | Ori Avtalion | 2016-04-14 16:10:21 +0300 |
commit | 356403233047e260e34887ba0144892be322f472 (patch) | |
tree | 354b2e73ded557e3aa543460a1fe8e952b4a0c88 /engines/bbvs | |
parent | 253e18c44080f57eb2334296e09297a2db5efda9 (diff) | |
download | scummvm-rg350-356403233047e260e34887ba0144892be322f472.tar.gz scummvm-rg350-356403233047e260e34887ba0144892be322f472.tar.bz2 scummvm-rg350-356403233047e260e34887ba0144892be322f472.zip |
JANITORIAL: Reduce audio header dependencies
Diffstat (limited to 'engines/bbvs')
-rw-r--r-- | engines/bbvs/bbvs.cpp | 1 | ||||
-rw-r--r-- | engines/bbvs/bbvs.h | 1 | ||||
-rw-r--r-- | engines/bbvs/sound.cpp | 1 | ||||
-rw-r--r-- | engines/bbvs/sound.h | 5 |
4 files changed, 6 insertions, 2 deletions
diff --git a/engines/bbvs/bbvs.cpp b/engines/bbvs/bbvs.cpp index 6ae663479d..e7b20512a2 100644 --- a/engines/bbvs/bbvs.cpp +++ b/engines/bbvs/bbvs.cpp @@ -34,6 +34,7 @@ #include "bbvs/minigames/minigame.h" #include "audio/audiostream.h" +#include "audio/decoders/aiff.h" #include "common/config-manager.h" #include "common/debug-channels.h" #include "common/error.h" diff --git a/engines/bbvs/bbvs.h b/engines/bbvs/bbvs.h index ff4afe9526..8d9550d423 100644 --- a/engines/bbvs/bbvs.h +++ b/engines/bbvs/bbvs.h @@ -24,7 +24,6 @@ #define BBVS_BBVS_H #include "audio/mixer.h" -#include "audio/decoders/aiff.h" #include "common/array.h" #include "common/events.h" #include "common/file.h" diff --git a/engines/bbvs/sound.cpp b/engines/bbvs/sound.cpp index 7f9c00ad48..587868f26d 100644 --- a/engines/bbvs/sound.cpp +++ b/engines/bbvs/sound.cpp @@ -21,6 +21,7 @@ */ #include "bbvs/sound.h" +#include "audio/audiostream.h" #include "audio/decoders/aiff.h" #include "common/debug.h" #include "common/file.h" diff --git a/engines/bbvs/sound.h b/engines/bbvs/sound.h index 4d3253c48e..a21d97b7ed 100644 --- a/engines/bbvs/sound.h +++ b/engines/bbvs/sound.h @@ -23,10 +23,13 @@ #ifndef BBVS_SOUND_H #define BBVS_SOUND_H -#include "audio/audiostream.h" #include "audio/mixer.h" #include "common/array.h" +namespace Audio { +class RewindableAudioStream; +} + namespace Bbvs { class Sound { |