diff options
Diffstat (limited to 'engines/dreamweb/structs.h')
-rw-r--r-- | engines/dreamweb/structs.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/engines/dreamweb/structs.h b/engines/dreamweb/structs.h index db863ac226..62f4be6a5c 100644 --- a/engines/dreamweb/structs.h +++ b/engines/dreamweb/structs.h @@ -167,6 +167,7 @@ struct ReelRoutine { uint8 b4; uint16 reelPointer() const { return READ_LE_UINT16(&b3); } void setReelPointer(uint16 v) { WRITE_LE_UINT16(&b3, v); } + void incReelPointer() { setReelPointer(reelPointer() + 1); } uint8 period; uint8 counter; uint8 b7; |