diff options
| author | TakaRikka <38417346+TakaRikka@users.noreply.github.com> | 2024-01-22 07:23:54 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-01-22 17:23:54 +0200 |
| commit | 697cd08979c12f2a1ebd32f12a1a306b730f14ec (patch) | |
| tree | cf87190adf687a837db8424dc00ffa21da99e837 /include/JSystem/JUtility | |
| parent | 5a735a495680b6b410a242cbe570a72b789d7016 (diff) | |
some various J2D/J3D work (#2043)
* most of J2DPicture done
* fix GXSetTexCoordGen
* some j3d work
Diffstat (limited to 'include/JSystem/JUtility')
| -rw-r--r-- | include/JSystem/JUtility/TColor.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/include/JSystem/JUtility/TColor.h b/include/JSystem/JUtility/TColor.h index 6550a48c0a..fd11ee8a7b 100644 --- a/include/JSystem/JUtility/TColor.h +++ b/include/JSystem/JUtility/TColor.h @@ -11,10 +11,6 @@ struct TColor : public GXColor { TColor(GXColor color) { set(color); } // TColor(const TColor& other) { set(other.toUInt32()); } - TColor& operator=(const TColor& other) { - ((GXColor*)this)->operator=(other); - return *this; - } operator u32() const { return toUInt32(); } u32 toUInt32() const { return *(u32*)&r; } |
