aboutsummaryrefslogtreecommitdiff
path: root/queen/cutaway.cpp
diff options
context:
space:
mode:
authorGregory Montoir2004-12-02 22:59:57 +0000
committerGregory Montoir2004-12-02 22:59:57 +0000
commit5884c6735dc911fcf732b564324feebc4cf1c0cf (patch)
treefd8a175c13d2e82ce21b41a0654d457d72acf0b7 /queen/cutaway.cpp
parent891970cd767760cbb682319d3215786d4a651c08 (diff)
downloadscummvm-rg350-5884c6735dc911fcf732b564324feebc4cf1c0cf.tar.gz
scummvm-rg350-5884c6735dc911fcf732b564324feebc4cf1c0cf.tar.bz2
scummvm-rg350-5884c6735dc911fcf732b564324feebc4cf1c0cf.zip
simplified palette handling
svn-id: r15971
Diffstat (limited to 'queen/cutaway.cpp')
-rw-r--r--queen/cutaway.cpp6
1 files changed, 1 insertions, 5 deletions
diff --git a/queen/cutaway.cpp b/queen/cutaway.cpp
index 1e8f390989..9aadf79e84 100644
--- a/queen/cutaway.cpp
+++ b/queen/cutaway.cpp
@@ -881,12 +881,8 @@ void Cutaway::run(char *nextFilename) {
if (_roomFade) {
_vm->update();
- int end = 223;
- if (Logic::isIntroRoom(_vm->logic()->currentRoom())) {
- end = 255;
- }
BobSlot *j = _vm->graphics()->bob(0);
- _vm->display()->palFadeIn(0, end, _vm->logic()->currentRoom(), j->active, j->x, j->y);
+ _vm->display()->palFadeIn(_vm->logic()->currentRoom(), j->active, j->x, j->y);
_roomFade = false;
}