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/lab | |
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/lab')
-rw-r--r-- | engines/lab/anim.cpp | 2 | ||||
-rw-r--r-- | engines/lab/dispman.cpp | 1 | ||||
-rw-r--r-- | engines/lab/engine.cpp | 1 | ||||
-rw-r--r-- | engines/lab/intro.cpp | 2 | ||||
-rw-r--r-- | engines/lab/lab.cpp | 1 | ||||
-rw-r--r-- | engines/lab/map.cpp | 2 | ||||
-rw-r--r-- | engines/lab/music.cpp | 2 | ||||
-rw-r--r-- | engines/lab/music.h | 6 | ||||
-rw-r--r-- | engines/lab/resource.cpp | 2 | ||||
-rw-r--r-- | engines/lab/special.cpp | 2 |
10 files changed, 19 insertions, 2 deletions
diff --git a/engines/lab/anim.cpp b/engines/lab/anim.cpp index f2e6992375..1190f0323b 100644 --- a/engines/lab/anim.cpp +++ b/engines/lab/anim.cpp @@ -28,6 +28,8 @@ * */ +#include "common/file.h" + #include "lab/lab.h" #include "lab/anim.h" diff --git a/engines/lab/dispman.cpp b/engines/lab/dispman.cpp index af235f234b..d642f2fed5 100644 --- a/engines/lab/dispman.cpp +++ b/engines/lab/dispman.cpp @@ -28,6 +28,7 @@ * */ +#include "common/file.h" #include "graphics/palette.h" #include "lab/lab.h" diff --git a/engines/lab/engine.cpp b/engines/lab/engine.cpp index 6ba405380e..4f0a0da777 100644 --- a/engines/lab/engine.cpp +++ b/engines/lab/engine.cpp @@ -29,6 +29,7 @@ */ #include "common/config-manager.h" +#include "common/file.h" #include "gui/message.h" diff --git a/engines/lab/intro.cpp b/engines/lab/intro.cpp index 01e8cac401..0184ff7c69 100644 --- a/engines/lab/intro.cpp +++ b/engines/lab/intro.cpp @@ -28,6 +28,8 @@ * */ +#include "common/file.h" + #include "lab/lab.h" #include "lab/anim.h" diff --git a/engines/lab/lab.cpp b/engines/lab/lab.cpp index 9b0ebfc4e5..39b2feb93d 100644 --- a/engines/lab/lab.cpp +++ b/engines/lab/lab.cpp @@ -31,6 +31,7 @@ #include "common/config-manager.h" #include "common/debug-channels.h" #include "common/error.h" +#include "common/file.h" #include "engines/util.h" diff --git a/engines/lab/map.cpp b/engines/lab/map.cpp index 5c6bb07814..057cac3589 100644 --- a/engines/lab/map.cpp +++ b/engines/lab/map.cpp @@ -28,6 +28,8 @@ * */ +#include "common/file.h" + #include "lab/lab.h" #include "lab/dispman.h" diff --git a/engines/lab/music.cpp b/engines/lab/music.cpp index b58d6dc923..579f450456 100644 --- a/engines/lab/music.cpp +++ b/engines/lab/music.cpp @@ -28,6 +28,8 @@ * */ +#include "common/file.h" +#include "audio/audiostream.h" #include "audio/decoders/raw.h" #include "lab/lab.h" diff --git a/engines/lab/music.h b/engines/lab/music.h index 472fe4fef7..8175e350f1 100644 --- a/engines/lab/music.h +++ b/engines/lab/music.h @@ -31,9 +31,11 @@ #ifndef LAB_MUSIC_H #define LAB_MUSIC_H -#include "common/file.h" #include "audio/mixer.h" -#include "audio/audiostream.h" + +namespace Common { +class File; +} namespace Lab { diff --git a/engines/lab/resource.cpp b/engines/lab/resource.cpp index aae369fbae..9cb35d1088 100644 --- a/engines/lab/resource.cpp +++ b/engines/lab/resource.cpp @@ -28,6 +28,8 @@ * */ +#include "common/file.h" + #include "lab/lab.h" #include "lab/dispman.h" diff --git a/engines/lab/special.cpp b/engines/lab/special.cpp index 9f9b993afa..7c3cb39931 100644 --- a/engines/lab/special.cpp +++ b/engines/lab/special.cpp @@ -28,6 +28,8 @@ * */ +#include "common/file.h" + #include "lab/lab.h" #include "lab/anim.h" |