From d3c8c4579faec0de20e72578b470462094b8bc33 Mon Sep 17 00:00:00 2001 From: hendricks266 Date: Mon, 8 Apr 2019 06:27:02 +0000 Subject: [PATCH] SW: Put a temporary shim in to get the length of an anm file to pass to ANIM_LoadAnim. Patch from Striker. git-svn-id: https://svn.eduke32.com/eduke32@7516 1a8010ca-5511-0410-912e-c29ae57300e0 --- source/sw/src/anim.cpp | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/source/sw/src/anim.cpp b/source/sw/src/anim.cpp index b24582480..d1572e3f7 100644 --- a/source/sw/src/anim.cpp +++ b/source/sw/src/anim.cpp @@ -283,6 +283,12 @@ playanm(short anim_num) if (!animbuf) return; + // [JM] Temporary, needed to get the file's length for ANIM_LoadAnim. !CHECKME! + handle = kopen4load(ANIMname[ANIMnum], 0); + if (handle == -1) return; + length = kfilelength(handle); + kclose(handle); + DSPRINTF(ds,"PlayAnm - Palette Stuff"); MONO_PRINT(ds); @@ -290,7 +296,7 @@ playanm(short anim_num) tempbuf[i] = i; palookup[0] = tempbuf; - ANIM_LoadAnim(animbuf); + ANIM_LoadAnim(animbuf, length); ANIMnumframes = ANIM_NumFrames(); numframes = ANIMnumframes;