Add basic dol shiftability

Fixed an incorrect function name
This commit is contained in:
jdflyer
2022-01-11 21:12:44 -07:00
parent 50471c025b
commit c72012c5d8
5 changed files with 52 additions and 12 deletions
+1
View File
@@ -9,6 +9,7 @@ typedef float Mtx[3][4];
typedef float Mtx33[3][3];
typedef float Mtx23[2][3];
typedef f32 (*MtxP)[4];
typedef const f32 (*CMtxP)[4]; //Change name later?
extern "C" {
void PSMTXIdentity(Mtx matrix);
+3 -3
View File
@@ -1,8 +1,8 @@
#ifndef M_DO_M_DO_MTX_H
#define M_DO_M_DO_MTX_H
#include "SSystem/SComponent/c_Xyz.h"
#include "SSystem/SComponent/c_sXyz.h"
#include "SSystem/SComponent/c_xyz.h"
#include "SSystem/SComponent/c_sxyz.h"
#include "dolphin/mtx/mtx.h"
#include "dolphin/mtx/quat.h"
#include "dolphin/types.h"
@@ -15,7 +15,7 @@ void mDoMtx_ZrotS(Mtx, s16);
void mDoMtx_YrotS(Mtx, s16);
void mDoMtx_XrotS(Mtx, s16);
void mDoMtx_YrotM(Mtx, s16);
void mDoMtx_MtxToRot(MtxP, csXyz*);
void mDoMtx_MtxToRot(CMtxP, csXyz*);
class mDoMtx_stack_c {
public: