aboutsummaryrefslogtreecommitdiff
path: root/engines/mutationofjb/gamedata.h
diff options
context:
space:
mode:
authorĽubomír Remák2019-02-03 23:35:43 +0100
committerĽubomír Remák2019-02-03 23:35:43 +0100
commitd18c83e8b8b96c3849b7bdd34b17a6bb91da4e78 (patch)
tree93a1e7889e67a81fd61808edbdf62e6630ade949 /engines/mutationofjb/gamedata.h
parent66400e7422ffe154b30e640fd26ababa4269a6f7 (diff)
downloadscummvm-rg350-d18c83e8b8b96c3849b7bdd34b17a6bb91da4e78.tar.gz
scummvm-rg350-d18c83e8b8b96c3849b7bdd34b17a6bb91da4e78.tar.bz2
scummvm-rg350-d18c83e8b8b96c3849b7bdd34b17a6bb91da4e78.zip
MUTATIONOFJB: Fix play animation command.
Diffstat (limited to 'engines/mutationofjb/gamedata.h')
-rw-r--r--engines/mutationofjb/gamedata.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/engines/mutationofjb/gamedata.h b/engines/mutationofjb/gamedata.h
index c2ddfd644a..e4bc611608 100644
--- a/engines/mutationofjb/gamedata.h
+++ b/engines/mutationofjb/gamedata.h
@@ -155,6 +155,7 @@ struct Object : public Common::Serializable {
uint8 _numFrames;
/**
* Low 8 bits of the 16-bit starting room frame (FS register).
+ * This is in the room frame space.
*
* @see _roomFrameMSB
*/
@@ -168,7 +169,7 @@ struct Object : public Common::Serializable {
/**
* Current animation frame (CA register).
*
- * @note Absolute index to the frame space. Numbered from 1.
+ * @note Index in the shared object frame space. Numbered from 1.
*/
uint8 _currentFrame;
/** X coordinate of the object rectangle (XX register). */
@@ -183,6 +184,7 @@ struct Object : public Common::Serializable {
uint16 _WX;
/**
* High 8 bits of the 16-bit starting room frame (WY register).
+ * This is in the room frame space.
*
* @see _roomFrameLSB
*/