aboutsummaryrefslogtreecommitdiff
path: root/engines/groovie/groovie.cpp
diff options
context:
space:
mode:
authorMatthew Hoops2009-06-23 20:46:38 +0000
committerMatthew Hoops2009-06-23 20:46:38 +0000
commit4a380dc0d8b1a75fa31e0b4511e03b0782b43f89 (patch)
tree294b96fcada89ecdad511332c781924043ac80e6 /engines/groovie/groovie.cpp
parenta44859e01bead5a30d8446a5bc75857d000199d9 (diff)
downloadscummvm-rg350-4a380dc0d8b1a75fa31e0b4511e03b0782b43f89.tar.gz
scummvm-rg350-4a380dc0d8b1a75fa31e0b4511e03b0782b43f89.tar.bz2
scummvm-rg350-4a380dc0d8b1a75fa31e0b4511e03b0782b43f89.zip
ENABLE_16BIT has been renamed to ENABLE_RGB_COLOR as of r41696, so make sure the Groovie engine uses that too
svn-id: r41817
Diffstat (limited to 'engines/groovie/groovie.cpp')
-rw-r--r--engines/groovie/groovie.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/groovie/groovie.cpp b/engines/groovie/groovie.cpp
index 5d89799648..c1826e12ce 100644
--- a/engines/groovie/groovie.cpp
+++ b/engines/groovie/groovie.cpp
@@ -72,7 +72,7 @@ Common::Error GroovieEngine::run() {
// Initialize the graphics
switch (_gameDescription->version) {
case kGroovieV2:
-#ifdef ENABLE_16BIT
+#ifdef ENABLE_RGB_COLOR
_pixelFormat = _system->getBestFormat();
initGraphics(640, 480, true, _pixelFormat);
break;