d_a_midna mostly done (#2237)

This commit is contained in:
Caroline Madsen
2024-11-06 22:20:22 -05:00
committed by GitHub
parent 305f87ee57
commit ddc1c166e7
18 changed files with 3737 additions and 1674 deletions
+1 -1
View File
@@ -31,7 +31,7 @@ struct J3DGXColor : public GXColor {
/* 8000E538 */ J3DGXColor() {}
J3DGXColor(J3DGXColor const& other) { __memcpy(this, &other, sizeof(J3DGXColor)); }
J3DGXColor(GXColor const& color) : GXColor(color) {}
J3DGXColor& operator=(GXColor color) {
J3DGXColor& operator=(const GXColor& color) {
*(GXColor*)this = color;
return *this;
}