mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-05-24 15:00:55 -04:00
GXColor: Remove assignment operator
Not necessary; not sure why I even added it
This commit is contained in:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user