Match all entries in gfxprint

This commit is contained in:
Cuyler36
2023-02-22 03:28:37 -05:00
parent a0393eb164
commit 0be91c36f7
3 changed files with 112 additions and 29 deletions
-6
View File
@@ -1,6 +0,0 @@
#include "libultra/gfxprint.h"
void gfxprint_locate(struct gfxprint_obj* gfxprint, s32 x, s32 y) {
gfxprint->NewX = (s16) (gfxprint->PrevX + (x * 4));
gfxprint->NewY = (s16) (gfxprint->PrevY + (y * 4));
}
@@ -1,7 +0,0 @@
#include "libultra/gfxprint.h"
void gfxprint_locate8x8(struct gfxprint_obj* arg0, s32 arg1, s32 arg2) {
s32 x = arg1 << 3;
s32 y = arg2 << 3;
gfxprint_locate(arg0, x, y);
}