diff options
-rw-r--r-- | engines/sci/engine/kgraphics32.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/engines/sci/engine/kgraphics32.cpp b/engines/sci/engine/kgraphics32.cpp index 78afa184f1..2be47b8a0c 100644 --- a/engines/sci/engine/kgraphics32.cpp +++ b/engines/sci/engine/kgraphics32.cpp @@ -800,6 +800,8 @@ reg_t kPalVarySetPercent(EngineState *s, int argc, reg_t *argv) { int16 percent = argc > 1 ? argv[1].toSint16() : 0; // TODO: GK1 adds a third optional parameter here, at the end of chapter 1 // (during the sunset/sunrise sequence, the parameter is 1) + if (argc > 2) + warning("kPalVarySetPercent: third parameter passed: %d", argv[2].toSint16()); g_sci->_gfxPalette32->setVaryPercent(percent, time, -1, -1); return NULL_REG; } |