diff options
author | Max Horn | 2010-05-04 11:58:12 +0000 |
---|---|---|
committer | Max Horn | 2010-05-04 11:58:12 +0000 |
commit | b3e404109c31160c978a17ebe497b9bdef9ff51a (patch) | |
tree | 816b6a2d9d1ba5b7634d0a606a8507c9b9ab6e7b /engines/sword2 | |
parent | 5568a8473b975dc2e7e0d1f1ae075ebd6d96f2f3 (diff) | |
download | scummvm-rg350-b3e404109c31160c978a17ebe497b9bdef9ff51a.tar.gz scummvm-rg350-b3e404109c31160c978a17ebe497b9bdef9ff51a.tar.bz2 scummvm-rg350-b3e404109c31160c978a17ebe497b9bdef9ff51a.zip |
Move initGraphics and initCommonGFX from to new header.
These functions are only used internally be Engine subclasses, and
by moving them to a separate header we can reduce indirect header
dependencies.
svn-id: r48934
Diffstat (limited to 'engines/sword2')
-rw-r--r-- | engines/sword2/sword2.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/engines/sword2/sword2.cpp b/engines/sword2/sword2.cpp index 7d3a345d3c..29f567d7ef 100644 --- a/engines/sword2/sword2.cpp +++ b/engines/sword2/sword2.cpp @@ -25,8 +25,6 @@ * $Id$ */ - - #include "base/plugins.h" #include "common/config-manager.h" @@ -38,6 +36,7 @@ #include "common/system.h" #include "engines/metaengine.h" +#include "engines/util.h" #include "sword2/sword2.h" #include "sword2/defs.h" |