Removed JUtility.h and added './tp format'

This commit is contained in:
Julgodis
2021-09-26 12:11:21 +02:00
parent fa19d7a32e
commit bf12ea7a11
11 changed files with 60 additions and 82 deletions
+2 -9
View File
@@ -3,19 +3,12 @@
#include "dolphin/types.h"
struct _GXColor {
void operator=(const _GXColor& rhs) {
r = rhs.r;
g = rhs.g;
b = rhs.b;
a = rhs.a;
}
typedef struct _GXColor {
u8 r;
u8 g;
u8 b;
u8 a;
};
} GXColor;
struct _GXColorS10 {
s16 r;