aboutsummaryrefslogtreecommitdiff
path: root/scumm/gfx.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'scumm/gfx.cpp')
-rw-r--r--scumm/gfx.cpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/scumm/gfx.cpp b/scumm/gfx.cpp
index b298797be4..a796535281 100644
--- a/scumm/gfx.cpp
+++ b/scumm/gfx.cpp
@@ -2158,10 +2158,12 @@ void Gdi::unkDecode11(byte *dst, const byte *src, int height) {
#pragma mark -
void Scumm::fadeIn(int effect) {
-
updatePalette();
switch (effect) {
+ case 0:
+ // seems to do nothing
+ break;
case 1:
case 2:
case 3:
@@ -2179,6 +2181,8 @@ void Scumm::fadeIn(int effect) {
case 128:
unkScreenEffect6();
break;
+ case 129:
+ break;
case 130:
case 131:
case 132:
@@ -2191,8 +2195,6 @@ void Scumm::fadeIn(int effect) {
case 135:
unkScreenEffect5(1);
break;
- case 129:
- break;
default:
warning("Unknown screen effect, %d", effect);
}