aboutsummaryrefslogtreecommitdiff
path: root/saga/animation.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'saga/animation.cpp')
-rw-r--r--saga/animation.cpp8
1 files changed, 7 insertions, 1 deletions
diff --git a/saga/animation.cpp b/saga/animation.cpp
index 081ddd74f7..50ee70cbc4 100644
--- a/saga/animation.cpp
+++ b/saga/animation.cpp
@@ -572,7 +572,7 @@ int Anim::IHNM_DecodeFrame(byte *decode_buf, size_t decode_buf_len, const byte *
outbuf_remain -= runcount;
continue;
break;
- case 0x1F: // 31: Unusued?
+ case SAGA_FRAME_NOOP: // Unused
if (thisf_len - readS.pos() < 3) {
warning("0x%02X: Input buffer underrun", in_ch);
return FAILURE;
@@ -775,6 +775,12 @@ void Anim::fillFrameOffsets(AnimationData *anim) {
readS.readByte();
continue;
break;
+ case SAGA_FRAME_NOOP: // Does nothing
+ readS.readByte();
+ readS.readByte();
+ readS.readByte();
+ continue;
+ break;
default:
break;
}