From e64620bf7ed1d17544bedf427892ab5a57581cd2 Mon Sep 17 00:00:00 2001 From: LagoLunatic Date: Sun, 14 Dec 2025 15:05:12 -0500 Subject: [PATCH] J3DGXColor ctors to match debug maps --- include/JSystem/J3DGraphBase/J3DMatBlock.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/JSystem/J3DGraphBase/J3DMatBlock.h b/include/JSystem/J3DGraphBase/J3DMatBlock.h index f7ff1a812..10f8b550a 100644 --- a/include/JSystem/J3DGraphBase/J3DMatBlock.h +++ b/include/JSystem/J3DGraphBase/J3DMatBlock.h @@ -9,8 +9,8 @@ struct J3DGXColorS10 { J3DGXColorS10() {} - J3DGXColorS10(const GXColorS10& other) { mColor = other; } - J3DGXColorS10(const J3DGXColorS10& other) { mColor = other.mColor; } + J3DGXColorS10(GXColorS10& other) { mColor = other; } + J3DGXColorS10(J3DGXColorS10& other) { mColor = other.mColor; } J3DGXColorS10& operator=(const J3DGXColorS10& other) { mColor = other.mColor; return *this; @@ -25,8 +25,8 @@ struct J3DGXColorS10 { struct J3DGXColor { J3DGXColor() {} - J3DGXColor(const GXColor& other) { mColor = other; } - J3DGXColor(const J3DGXColor& other) { mColor = other.mColor; } + J3DGXColor(GXColor& other) { mColor = other; } + J3DGXColor(J3DGXColor& other) { mColor = other.mColor; } J3DGXColor& operator=(const J3DGXColor& other) { mColor = other.mColor; return *this;