Merge branch 'master' into move_gfxprint

This commit is contained in:
Prakxo
2023-02-24 13:46:52 +01:00
committed by GitHub
9 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"