diff options
author | Eugene Sandulenko | 2019-07-24 12:58:48 +0200 |
---|---|---|
committer | Eugene Sandulenko | 2019-09-03 17:17:28 +0200 |
commit | c63d207d63c9c66ca7f233b18345ec6d34fc69c7 (patch) | |
tree | d627a4bccf2146bcce061b6b8e18fc4186e144fd /engines/hdb | |
parent | 91da8c7aab9c8a396f37d99ad019d40084856dfc (diff) | |
download | scummvm-rg350-c63d207d63c9c66ca7f233b18345ec6d34fc69c7.tar.gz scummvm-rg350-c63d207d63c9c66ca7f233b18345ec6d34fc69c7.tar.bz2 scummvm-rg350-c63d207d63c9c66ca7f233b18345ec6d34fc69c7.zip |
HDB: Reduce header dependency
Diffstat (limited to 'engines/hdb')
-rw-r--r-- | engines/hdb/hdb.cpp | 12 | ||||
-rw-r--r-- | engines/hdb/lua-script.cpp | 1 |
2 files changed, 0 insertions, 13 deletions
diff --git a/engines/hdb/hdb.cpp b/engines/hdb/hdb.cpp index 4fad19c812..cc92ad720e 100644 --- a/engines/hdb/hdb.cpp +++ b/engines/hdb/hdb.cpp @@ -20,16 +20,6 @@ * */ -#include "common/scummsys.h" -#include "common/system.h" -#include "common/config-manager.h" -#include "common/debug.h" -#include "common/debug-channels.h" -#include "common/file.h" -#include "common/error.h" -#include "common/stream.h" -#include "common/memstream.h" - #include "hdb/hdb.h" #include "hdb/file-manager.h" #include "hdb/gfx.h" @@ -104,8 +94,6 @@ HDBGame::~HDBGame() { } delete _debugLogo; _debugLogo = NULL; - - DebugMan.clearAllDebugChannels(); } bool HDBGame::init() { diff --git a/engines/hdb/lua-script.cpp b/engines/hdb/lua-script.cpp index 71de7b1db3..015f855a2f 100644 --- a/engines/hdb/lua-script.cpp +++ b/engines/hdb/lua-script.cpp @@ -23,7 +23,6 @@ #include "common/lua/lua.h" #include "common/lua/lauxlib.h" #include "common/lua/lualib.h" -#include "common/debug.h" #include "hdb/hdb.h" #include "hdb/file-manager.h" |