diff options
author | Gregory Montoir | 2005-05-24 17:18:37 +0000 |
---|---|---|
committer | Gregory Montoir | 2005-05-24 17:18:37 +0000 |
commit | 53947124c768a951062153171367f2c9de371495 (patch) | |
tree | f67494cf5b00e3f2a771351bca8788c069d2d832 | |
parent | 067bfe518b6e09d2c2edd4e1b42c705c45c98d68 (diff) | |
download | scummvm-rg350-53947124c768a951062153171367f2c9de371495.tar.gz scummvm-rg350-53947124c768a951062153171367f2c9de371495.tar.bz2 scummvm-rg350-53947124c768a951062153171367f2c9de371495.zip |
with the recent _darkenPalette change, this is now unneeded for COMI demo
svn-id: r18242
-rw-r--r-- | scumm/palette.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/scumm/palette.cpp b/scumm/palette.cpp index b8645f3a98..83e8239d14 100644 --- a/scumm/palette.cpp +++ b/scumm/palette.cpp @@ -659,9 +659,6 @@ void ScummEngine::setupShadowPalette(int redScale, int greenScale, int blueScale } void ScummEngine::darkenPalette(int redScale, int greenScale, int blueScale, int startColor, int endColor) { - if (_roomResource == 0) // FIXME - HACK to get COMI demo working - return; - int max; if (_version >= 5 && _version <= 6 && _heversion <= 60) { max = 252; |