From f84a1f7c0cb48bb8440aa3cd011b6f2fa9dca0bd Mon Sep 17 00:00:00 2001 From: "Jasper St. Pierre" Date: Sat, 23 Apr 2022 14:29:46 -0700 Subject: [PATCH] GXColor: Remove assignment operator Not necessary; not sure why I even added it --- include/dolphin/gx/GX.h | 8 -------- 1 file changed, 8 deletions(-) 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 {