aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/engine
diff options
context:
space:
mode:
authorColin Snover2017-10-06 15:14:49 -0500
committerColin Snover2017-10-06 22:11:03 -0500
commit1b4214695566ccadbe27806f646bed3c4c944809 (patch)
tree9dc35e32aec4482f22d6d973229fcc6e0098ef51 /engines/sci/engine
parenta2c8674252743c451600f53c77df3c7fac6e7786 (diff)
downloadscummvm-rg350-1b4214695566ccadbe27806f646bed3c4c944809.tar.gz
scummvm-rg350-1b4214695566ccadbe27806f646bed3c4c944809.tar.bz2
scummvm-rg350-1b4214695566ccadbe27806f646bed3c4c944809.zip
SCI32: Clean up GfxRemap32
* Rewrap comments to 80 columns * Clarify comments where possible
Diffstat (limited to 'engines/sci/engine')
-rw-r--r--engines/sci/engine/kgraphics32.cpp24
1 files changed, 12 insertions, 12 deletions
diff --git a/engines/sci/engine/kgraphics32.cpp b/engines/sci/engine/kgraphics32.cpp
index 1734221ec2..02b2cea9a9 100644
--- a/engines/sci/engine/kgraphics32.cpp
+++ b/engines/sci/engine/kgraphics32.cpp
@@ -1057,9 +1057,9 @@ reg_t kRemapColorsByRange(EngineState *s, int argc, reg_t *argv) {
const int16 from = argv[1].toSint16();
const int16 to = argv[2].toSint16();
const int16 base = argv[3].toSint16();
- // NOTE: There is an optional last parameter after `base`
- // which was only used by the priority map debugger, which
- // does not exist in release versions of SSCI
+ // There is an optional last parameter after `base` which was only used by
+ // the priority map debugger which does not exist in release versions of
+ // SSCI
g_sci->_gfxRemap32->remapByRange(color, from, to, base);
return s->r_acc;
}
@@ -1067,9 +1067,9 @@ reg_t kRemapColorsByRange(EngineState *s, int argc, reg_t *argv) {
reg_t kRemapColorsByPercent(EngineState *s, int argc, reg_t *argv) {
const uint8 color = argv[0].toUint16();
const int16 percent = argv[1].toSint16();
- // NOTE: There is an optional last parameter after `percent`
- // which was only used by the priority map debugger, which
- // does not exist in release versions of SSCI
+ // There is an optional last parameter after `percent` which was only used
+ // by the priority map debugger, which does not exist in release versions of
+ // SSCI
g_sci->_gfxRemap32->remapByPercent(color, percent);
return s->r_acc;
}
@@ -1077,9 +1077,9 @@ reg_t kRemapColorsByPercent(EngineState *s, int argc, reg_t *argv) {
reg_t kRemapColorsToGray(EngineState *s, int argc, reg_t *argv) {
const uint8 color = argv[0].toUint16();
const int16 gray = argv[1].toSint16();
- // NOTE: There is an optional last parameter after `gray`
- // which was only used by the priority map debugger, which
- // does not exist in release versions of SSCI
+ // There is an optional last parameter after `gray` which was only used by
+ // the priority map debugger, which does not exist in release versions of
+ // SSCI
g_sci->_gfxRemap32->remapToGray(color, gray);
return s->r_acc;
}
@@ -1088,9 +1088,9 @@ reg_t kRemapColorsToPercentGray(EngineState *s, int argc, reg_t *argv) {
const uint8 color = argv[0].toUint16();
const int16 gray = argv[1].toSint16();
const int16 percent = argv[2].toSint16();
- // NOTE: There is an optional last parameter after `percent`
- // which was only used by the priority map debugger, which
- // does not exist in release versions of SSCI
+ // There is an optional last parameter after `percent` which was only used
+ // by the priority map debugger, which does not exist in release versions of
+ // SSCI
g_sci->_gfxRemap32->remapToPercentGray(color, gray, percent);
return s->r_acc;
}