Fix crash in retrieve_animation_index()

This commit is contained in:
MysterD 2023-05-14 12:30:55 -07:00
parent 258e6e2b82
commit 1b5e1cee9a
1 changed files with 1 additions and 0 deletions

View File

@ -813,6 +813,7 @@ void geo_obj_init_animation_accel(struct GraphNodeObject *graphNode, const struc
* with actual animation values.
*/
s32 retrieve_animation_index(s32 frame, u16 **attributes) {
if (!attributes || !(*attributes)) { return 0; }
s32 result;
if (frame < (*attributes)[0]) {