fix slices order, match some gu funcs

This commit is contained in:
Prakxo
2023-02-24 12:21:05 +00:00
parent 861cfcb5fe
commit 5ffa01306c
10 changed files with 92 additions and 42 deletions
+7
View File
@@ -0,0 +1,7 @@
#include "libultra/gu.h"
void guScale(Mtx *m, float x, float y, float z) {
float mf[4][4];
guScaleF(mf, x, y, z);
guMtxF2L(mf, m);
}
+7
View File
@@ -0,0 +1,7 @@
#include "libultra/gu.h"
void guTranslate(Mtx *m, float x, float y, float z) {
float mf[4][4];
guTranslateF(mf, x, y, z);
guMtxF2L(mf, m);
}
+1 -1
View File
@@ -1,5 +1,5 @@
#include "libultra/libultra.h"
#include "_mem.h"
#include <string.h>
#include "dolphin/os.h"
#include "dolphin/os/OSTime.h"