aboutsummaryrefslogtreecommitdiff
path: root/saga/animation.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'saga/animation.cpp')
-rw-r--r--saga/animation.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/saga/animation.cpp b/saga/animation.cpp
index 902dadb3ef..f6ed13a361 100644
--- a/saga/animation.cpp
+++ b/saga/animation.cpp
@@ -283,6 +283,7 @@ int Anim::play(uint16 anim_id, int vector_time, bool playing) {
link_anim = _anim_tbl[link_anim_id];
if (link_anim != NULL) {
+ debug(5, "Animation ended going to %d", link_anim_id);
link_anim->current_frame = 0;
link_anim->state = ANIM_PLAYING;
}
@@ -425,7 +426,7 @@ void Anim::readAnimHeader(MemoryReadStreamEndian &readS, ANIMATION_HEADER &ah) {
ah.unknown07 = readS.readByte();
ah.nframes = readS.readByte() - 1;
ah.loopframe = readS.readByte() - 1;
- ah.start = readS.readUint16BE(); //FIXME: check on Mac
+ ah.start = readS.readUint16BE();
if (ah.start != 65535 && ah.start != 0)
error("Anim::readAnimHeader(): found different start: %d. Fix Anim::play()", ah.start);