GXColor: Remove assignment operator

Not necessary; not sure why I even added it
This commit is contained in:
Jasper St. Pierre
2022-04-23 14:29:46 -07:00
parent 48bf0738d6
commit f84a1f7c0c
-8
View File
@@ -12,14 +12,6 @@ typedef struct _GXColor {
/* 0x1 */ u8 g;
/* 0x2 */ u8 b;
/* 0x3 */ u8 a;
_GXColor& operator=(const _GXColor& o) {
r = o.r;
g = o.g;
b = o.b;
a = o.a;
return *this;
}
} GXColor;
typedef struct _GXColorS10 {