diff options
author | Johannes Schickel | 2009-12-09 22:50:12 +0000 |
---|---|---|
committer | Johannes Schickel | 2009-12-09 22:50:12 +0000 |
commit | 2f372d79d5b792b624dc585840131f8e5ad9be5e (patch) | |
tree | b5dfc189d70b45fb183657223b95c11620208c0a /engines/draci | |
parent | f3420c63721dd6a8d857d9c44f794c83beaa7cf8 (diff) | |
download | scummvm-rg350-2f372d79d5b792b624dc585840131f8e5ad9be5e.tar.gz scummvm-rg350-2f372d79d5b792b624dc585840131f8e5ad9be5e.tar.bz2 scummvm-rg350-2f372d79d5b792b624dc585840131f8e5ad9be5e.zip |
Fix compilation for systems without USE_RGB_COLOR defined.
svn-id: r46323
Diffstat (limited to 'engines/draci')
-rw-r--r-- | engines/draci/mouse.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/engines/draci/mouse.cpp b/engines/draci/mouse.cpp index 15fcc42760..28e2a84fc7 100644 --- a/engines/draci/mouse.cpp +++ b/engines/draci/mouse.cpp @@ -32,6 +32,8 @@ #include "graphics/cursorman.h" +#include "common/system.h" + namespace Draci { Mouse::Mouse(DraciEngine *vm) { |