summaryrefslogtreecommitdiff
path: root/include/JSystem/J2DGraph
diff options
context:
space:
mode:
authorMattias Blum <142374929+mattias-blum@users.noreply.github.com>2026-08-13 16:27:09 -0400
committerGitHub <noreply@github.com>2026-08-13 16:27:09 -0400
commit56f975b58008b91da177ea84353198487fa40c97 (patch)
tree7c472b3e799e949b7b216b077d7542ca27d7cd99 /include/JSystem/J2DGraph
parent37f7baaaf0cc58a2459069605158777461962002 (diff)
d_menu_collect mostly matching for GZLE01 (#1164)
* more progress * more progress * more progress * more progress * d_menu work d_menu_collect class members cleaned up, some functions at 100% matching * added `Nonmatching` tag to unmatched functions * more functions at 100% * more functions matching * more functions matching * more progress * more progress * d_menu mostly matching for GZLE01 * fixed broken member names
Diffstat (limited to 'include/JSystem/J2DGraph')
-rw-r--r--include/JSystem/J2DGraph/J2DWindow.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/JSystem/J2DGraph/J2DWindow.h b/include/JSystem/J2DGraph/J2DWindow.h
index a56ff6ab..a530550b 100644
--- a/include/JSystem/J2DGraph/J2DWindow.h
+++ b/include/JSystem/J2DGraph/J2DWindow.h
@@ -44,10 +44,10 @@ public:
param_0.mBR = mColorBR;
}
void getWhite() const {}
- void setBlack(JUtility::TColor) {}
- void setContentsColor(TContentsColor) {}
- void setContentsColor(JUtility::TColor) {}
- void setWhite(JUtility::TColor) {}
+ void setBlack(JUtility::TColor black) { mBlack = black; }
+ void setContentsColor(TContentsColor& param_0) { setContentsColor(param_0.mTL, param_0.mTR, param_0.mBL, param_0.mBR); }
+ void setContentsColor(JUtility::TColor param_0) { setContentsColor(param_0, param_0, param_0, param_0); }
+ void setWhite(JUtility::TColor white) { mWhite = white; }
public:
/* 0x0CC */ JUTTexture* mpFrameTexture1;