aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/engine/kgraphics32.cpp
diff options
context:
space:
mode:
authorColin Snover2017-10-05 23:21:05 -0500
committerColin Snover2017-10-06 22:10:51 -0500
commitf51b158f8cc7cb40eb56904e475aae89ac5e55a4 (patch)
tree3b3e1c66b4d9544377b15d98d64477fb31b9834a /engines/sci/engine/kgraphics32.cpp
parentc413030be3a03e363c7c5728dbeb1fe65f90688e (diff)
downloadscummvm-rg350-f51b158f8cc7cb40eb56904e475aae89ac5e55a4.tar.gz
scummvm-rg350-f51b158f8cc7cb40eb56904e475aae89ac5e55a4.tar.bz2
scummvm-rg350-f51b158f8cc7cb40eb56904e475aae89ac5e55a4.zip
SCI32: Clean up GfxFrameout
* Rewrap doxygen comments to 80 columns * Swap public/private sections so public APIs come first * Clarify comments where easily possible
Diffstat (limited to 'engines/sci/engine/kgraphics32.cpp')
-rw-r--r--engines/sci/engine/kgraphics32.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/sci/engine/kgraphics32.cpp b/engines/sci/engine/kgraphics32.cpp
index d093c553e6..1734221ec2 100644
--- a/engines/sci/engine/kgraphics32.cpp
+++ b/engines/sci/engine/kgraphics32.cpp
@@ -102,9 +102,9 @@ reg_t kBaseSetter32(EngineState *s, int argc, reg_t *argv) {
reg_t kSetNowSeen32(EngineState *s, int argc, reg_t *argv) {
const bool found = g_sci->_gfxFrameout->kernelSetNowSeen(argv[0]);
- // NOTE: MGDX is assumed to use the older kSetNowSeen since it was
- // released before SQ6, but this has not been verified since it cannot be
- // disassembled at the moment (Phar Lap Windows-only release)
+ // MGDX is assumed to use the older kSetNowSeen since it was released before
+ // SQ6, but this has not been verified since it cannot be disassembled at
+ // the moment (Phar Lap Windows-only release)
// (See also getNowSeenRect)
if (getSciVersion() <= SCI_VERSION_2_1_EARLY ||
g_sci->getGameId() == GID_SQ6 ||