aboutsummaryrefslogtreecommitdiff
path: root/engines/cine/script.cpp
diff options
context:
space:
mode:
authorEugene Sandulenko2006-11-18 20:57:37 +0000
committerEugene Sandulenko2006-11-18 20:57:37 +0000
commitc558018bd97858d2ca52afd9995a70f83ee34bd6 (patch)
tree77d873312e65950d7616e2ae669fdb57c4eaff9b /engines/cine/script.cpp
parentc5bed9ebb72233072197f0bd0e2bf8bdfb8499b9 (diff)
downloadscummvm-rg350-c558018bd97858d2ca52afd9995a70f83ee34bd6.tar.gz
scummvm-rg350-c558018bd97858d2ca52afd9995a70f83ee34bd6.tar.bz2
scummvm-rg350-c558018bd97858d2ca52afd9995a70f83ee34bd6.zip
Implement o1_fadeToBlack()
svn-id: r24738
Diffstat (limited to 'engines/cine/script.cpp')
-rw-r--r--engines/cine/script.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/cine/script.cpp b/engines/cine/script.cpp
index 026fab7f2a..b1421623a6 100644
--- a/engines/cine/script.cpp
+++ b/engines/cine/script.cpp
@@ -1501,8 +1501,8 @@ void o1_blitAndFade() {
void o1_fadeToBlack() {
debugC(5, kCineDebugScript, "Line: %d: request fadeout", _currentLine);
- //fadeToBlack();
- warning("STUB: o1_fadeToBlack()");
+
+ fadeToBlack();
}
void o1_transformPaletteRange() {
@@ -1512,7 +1512,7 @@ void o1_transformPaletteRange() {
uint16 g = getNextWord();
uint16 b = getNextWord();
- debugC(5, kCineDebugScript, "Line: %d: transformPaletteRange(from:%d,numIdx:%d,r:%d,g:%d,b:%d) -> unimplemented", _currentLine, startColor, numColor, r, g, b);
+ debugC(5, kCineDebugScript, "Line: %d: transformPaletteRange(from:%d,numIdx:%d,r:%d,g:%d,b:%d)", _currentLine, startColor, numColor, r, g, b);
transformPaletteRange(startColor, numColor, r, g, b);
}