summaryrefslogtreecommitdiffstats
path: root/src/core/common.h
diff options
context:
space:
mode:
authoraap <aap@papnet.eu>2020-06-01 20:28:04 +0200
committeraap <aap@papnet.eu>2020-06-01 20:28:04 +0200
commit8bbb6a2a4a104469f1c3a285f68088445332d671 (patch)
tree965cdf7d7fe4e248f308aea9d23762b72f236a29 /src/core/common.h
parentfixed timebar toggle (diff)
downloadre3-8bbb6a2a4a104469f1c3a285f68088445332d671.tar
re3-8bbb6a2a4a104469f1c3a285f68088445332d671.tar.gz
re3-8bbb6a2a4a104469f1c3a285f68088445332d671.tar.bz2
re3-8bbb6a2a4a104469f1c3a285f68088445332d671.tar.lz
re3-8bbb6a2a4a104469f1c3a285f68088445332d671.tar.xz
re3-8bbb6a2a4a104469f1c3a285f68088445332d671.tar.zst
re3-8bbb6a2a4a104469f1c3a285f68088445332d671.zip
Diffstat (limited to 'src/core/common.h')
-rw-r--r--src/core/common.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/common.h b/src/core/common.h
index f79b199b..7d339660 100644
--- a/src/core/common.h
+++ b/src/core/common.h
@@ -29,14 +29,14 @@
#define STREAMFILE(str) (((rw::StreamFile*)(str))->file)
#define HIERNODEINFO(hier) ((hier)->nodeInfo)
#define HIERNODEID(hier, i) ((hier)->nodeInfo[i].id)
-#define HANIMFRAMES(anim) ((anim)->keyframes)
+#define HANIMFRAME(anim, i) ((RwUInt8*)(anim)->keyframes + (i)*(anim)->interpInfo->animKeyFrameSize)
#else
#define RWHALFPIXEL // always d3d
#define STREAMPOS(str) ((str)->Type.memory.position)
#define STREAMFILE(str) ((str)->Type.file.fpFile)
#define HIERNODEINFO(hier) ((hier)->pNodeInfo)
#define HIERNODEID(hier, i) ((hier)->pNodeInfo[i].nodeID)
-#define HANIMFRAMES(anim) ((anim)->pFrames)
+#define HANIMFRAME(anim, i) ((RwUInt8*)(anim)->pFrames + (i)*(anim)->interpInfo->keyFrameSize)
#endif
#ifdef RWHALFPIXEL