diff options
author | Andre Heider | 2009-08-21 18:16:37 +0000 |
---|---|---|
committer | Andre Heider | 2009-08-21 18:16:37 +0000 |
commit | 007f68366fd55a519753bf533c7c3a80db3754f0 (patch) | |
tree | d25cade63a148fdd6b2190151e8e1f5c87a73ef3 /engines/sci | |
parent | c0d954334547c166b52b37199ad877bc7e5ac2b0 (diff) | |
download | scummvm-rg350-007f68366fd55a519753bf533c7c3a80db3754f0.tar.gz scummvm-rg350-007f68366fd55a519753bf533c7c3a80db3754f0.tar.bz2 scummvm-rg350-007f68366fd55a519753bf533c7c3a80db3754f0.zip |
Renamed ENABLE_RGB_COLOR to USE_RGB_COLOR, and added it to config.h to guarantee a consistent build.
svn-id: r43604
Diffstat (limited to 'engines/sci')
-rw-r--r-- | engines/sci/sci.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sci/sci.cpp b/engines/sci/sci.cpp index 0db80726be..3f148f54e7 100644 --- a/engines/sci/sci.cpp +++ b/engines/sci/sci.cpp @@ -112,7 +112,7 @@ SciEngine::~SciEngine() { Common::Error SciEngine::run() { Graphics::PixelFormat gfxmode; -#if 0 && defined(ENABLE_RGB_COLOR) +#if 0 && defined(USE_RGB_COLOR) initGraphics(320, 200, false, NULL); #else initGraphics(320, 200, false); |