Fix fixed-point matrix type being used in floating-point matrix instances

This commit is contained in:
Mr-Wiseguy
2024-09-13 17:56:28 -04:00
parent b77274c9ea
commit 8d918e3505
18 changed files with 236 additions and 204 deletions

View File

@@ -3,6 +3,7 @@
#include <ultra64.h>
#include "generic.h"
#include "ml/mtx.h"
#ifndef NONMATCHING
#define animctrl_start(this, file, line) _animctrl_start(this, file, line)
@@ -18,10 +19,10 @@ enum animctrl_playback_e{
};
typedef struct{
Mtx mtx_0;
MtxF mtx_0;
s32 size_40;
s32 capacity_44;
Mtx data[];
MtxF data[];
}AnimMtxList;
typedef struct animation_s{