diff options
author | Eugene Sandulenko | 2019-07-24 14:02:30 +0200 |
---|---|---|
committer | Eugene Sandulenko | 2019-09-03 17:17:28 +0200 |
commit | a50e1469b7530bab111b9dd68999cdffe4e827b9 (patch) | |
tree | 1a949c0f647351bae69c5ab90499160742afb43d | |
parent | e0b0d85f5b1c02136cf834b7eec181901faf2fc6 (diff) | |
download | scummvm-rg350-a50e1469b7530bab111b9dd68999cdffe4e827b9.tar.gz scummvm-rg350-a50e1469b7530bab111b9dd68999cdffe4e827b9.tar.bz2 scummvm-rg350-a50e1469b7530bab111b9dd68999cdffe4e827b9.zip |
HDB: Reduce header dependency
-rw-r--r-- | engines/hdb/hdb.cpp | 2 | ||||
-rw-r--r-- | engines/hdb/hdb.h | 5 | ||||
-rw-r--r-- | engines/hdb/sound.cpp | 3 |
3 files changed, 5 insertions, 5 deletions
diff --git a/engines/hdb/hdb.cpp b/engines/hdb/hdb.cpp index c2c9f51fde..11c10cc7be 100644 --- a/engines/hdb/hdb.cpp +++ b/engines/hdb/hdb.cpp @@ -23,6 +23,8 @@ #include "common/config-manager.h" #include "common/random.h" +#include "engines/util.h" + #include "hdb/hdb.h" #include "hdb/ai.h" #include "hdb/file-manager.h" diff --git a/engines/hdb/hdb.h b/engines/hdb/hdb.h index 680d89101c..6d23bde7c3 100644 --- a/engines/hdb/hdb.h +++ b/engines/hdb/hdb.h @@ -26,13 +26,8 @@ #include "common/scummsys.h" #include "common/system.h" #include "common/savefile.h" -#include "audio/audiostream.h" -#include "audio/decoders/wave.h" -#include "audio/decoders/mp3.h" -#include "gui/debugger.h" #include "engines/engine.h" -#include "engines/util.h" namespace Common { class RandomSource; diff --git a/engines/hdb/sound.cpp b/engines/hdb/sound.cpp index d1a73e06ed..878f0074d7 100644 --- a/engines/hdb/sound.cpp +++ b/engines/hdb/sound.cpp @@ -21,7 +21,10 @@ */ #include "common/debug.h" +#include "audio/audiostream.h" #include "audio/mixer.h" +#include "audio/decoders/wave.h" +#include "audio/decoders/mp3.h" #include "hdb/hdb.h" #include "hdb/file-manager.h" |