diff options
author | Lars Skovlund | 2010-06-17 22:08:07 +0000 |
---|---|---|
committer | Lars Skovlund | 2010-06-17 22:08:07 +0000 |
commit | 37434d86ae8f4e7ca3e7f0258c78ad9441f99e31 (patch) | |
tree | 618716060a27deeec1b72dab71192529367cf6cc | |
parent | d1964ec18b81b157617ac7fb914400ec98cf8255 (diff) | |
download | scummvm-rg350-37434d86ae8f4e7ca3e7f0258c78ad9441f99e31.tar.gz scummvm-rg350-37434d86ae8f4e7ca3e7f0258c78ad9441f99e31.tar.bz2 scummvm-rg350-37434d86ae8f4e7ca3e7f0258c78ad9441f99e31.zip |
SCI: PlayVMD(1): Hmmm. Don't print gammaBoost etc if they aren't used
svn-id: r49953
-rw-r--r-- | engines/sci/engine/kgraphics.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sci/engine/kgraphics.cpp b/engines/sci/engine/kgraphics.cpp index cb1a4794b8..6241c22f88 100644 --- a/engines/sci/engine/kgraphics.cpp +++ b/engines/sci/engine/kgraphics.cpp @@ -1334,7 +1334,7 @@ reg_t kPlayVMD(EngineState *s, int argc, reg_t *argv) { warning("VMDFlags: %s", flagspec.c_str()); warning("x, y: %d, %d", argv[1].offset, argv[2].offset); - if (argc > 4) + if (argc > 4 && flags & 16) warning("gammaBoost: %d%% between palette entries %d and %d", argv[4].offset, argv[5].offset, argv[6].offset); break; } |