summaryrefslogtreecommitdiff
path: root/include/JSystem/J2DGraph
diff options
context:
space:
mode:
authorJasper St. Pierre <jstpierre@mecheye.net>2023-10-21 13:57:54 -0700
committerJasper St. Pierre <jstpierre@mecheye.net>2023-10-21 13:57:54 -0700
commitc242e5201241f469d7985991ff320b609010ecb9 (patch)
tree28f75b8baf33b2631b2d03603a7453dadb0aa2b8 /include/JSystem/J2DGraph
parent21fae0888317391549a4b21a7c83c00a23984302 (diff)
d_metronome work
Diffstat (limited to 'include/JSystem/J2DGraph')
-rw-r--r--include/JSystem/J2DGraph/J2DPicture.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/JSystem/J2DGraph/J2DPicture.h b/include/JSystem/J2DGraph/J2DPicture.h
index 252af950..89912640 100644
--- a/include/JSystem/J2DGraph/J2DPicture.h
+++ b/include/JSystem/J2DGraph/J2DPicture.h
@@ -69,8 +69,8 @@ public:
setBlendColorRatio(f1, f2, f3, f4);
setBlendAlphaRatio(f1, f2, f3, f4);
}
- bool setWhite(JUtility::TColor white) { mColorWhite.set(white); return true; }
- bool setBlack(JUtility::TColor black) { mColorBlack.set(black); return true; }
+ bool setWhite(JUtility::TColor white) { mColorWhite = white; return true; }
+ bool setBlack(JUtility::TColor black) { mColorBlack = black; return true; }
bool setBlackWhite(JUtility::TColor black, JUtility::TColor white) {
mColorBlack = black;
mColorWhite = white;