diff options
Diffstat (limited to 'include/SDK')
-rw-r--r-- | include/SDK/mtx.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/include/SDK/mtx.h b/include/SDK/mtx.h index a2c9cd1..e9b1e2b 100644 --- a/include/SDK/mtx.h +++ b/include/SDK/mtx.h @@ -5,12 +5,14 @@ extern "C" {
#endif
-typedef f32 Mtx[3][4];
-typedef f32 (*MtxPtr)[4];
+typedef float Mtx[3][4];
+typedef float (*MtxPtr)[4];
#define MTX_PTR_OFFSET 3
#define MTXIdentity PSMTXIdentity
+#define MTXScale PSMTXScale
+#define MTXCopy PSMTXCopy
void PSMTXIdentity(Mtx m);
|