diff --git a/include/dolphin/gx/GX.h b/include/dolphin/gx/GX.h index b8c541c591..923acbf8f4 100644 --- a/include/dolphin/gx/GX.h +++ b/include/dolphin/gx/GX.h @@ -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 {