mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-08-09 18:27:21 -04:00
fix slices order, match some gu funcs
This commit is contained in:
@@ -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);
|
||||
}
|
||||
@@ -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,5 +1,5 @@
|
||||
#include "libultra/libultra.h"
|
||||
#include "_mem.h"
|
||||
#include <string.h>
|
||||
#include "dolphin/os.h"
|
||||
#include "dolphin/os/OSTime.h"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user