diff options
author | Martin Kiewitz | 2015-09-13 00:29:08 +0200 |
---|---|---|
committer | Martin Kiewitz | 2015-09-13 00:29:08 +0200 |
commit | 703d1d71425a0bd3a36db39f2c153cb1622158bb (patch) | |
tree | dcd1d6ec32710fce0be9ad4f26311940a02cce31 | |
parent | e4aef79e95f80706df062402518af9cc4c68f95e (diff) | |
download | scummvm-rg350-703d1d71425a0bd3a36db39f2c153cb1622158bb.tar.gz scummvm-rg350-703d1d71425a0bd3a36db39f2c153cb1622158bb.tar.bz2 scummvm-rg350-703d1d71425a0bd3a36db39f2c153cb1622158bb.zip |
SHERLOCK: SS: 3DO: fix video downscale comment
it's called pixel weighting, not color weighting
-rw-r--r-- | engines/sherlock/scalpel/scalpel.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/sherlock/scalpel/scalpel.cpp b/engines/sherlock/scalpel/scalpel.cpp index 4bca3003c4..aef9dfd4f2 100644 --- a/engines/sherlock/scalpel/scalpel.cpp +++ b/engines/sherlock/scalpel/scalpel.cpp @@ -1293,9 +1293,9 @@ bool ScalpelEngine::play3doMovie(const Common::String &filename, const Common::P // movies are 152 x 200 // Downscale, but calculate average color out of 4 pixels and put that average into the target pixel - // TODO: 3DO actually did color weighting, exact details about this are unknown - // it's also unknown what 3DO exactly did for interpolation and it's also unknown atm - // if the CinePak videos contained color weighting information + // TODO: 3DO actually did pixel weighting, exact details about this are unknown + // It's also unknown what 3DO exactly did for interpolation + // and it's also unknown atm if the CinePak videos contained pixel weighting information if ((height & 1) || (width & 1)) { error("Scalpel3DOMoviePlay: critical error, half-size requested on video with uneven height/width"); |