summaryrefslogtreecommitdiff
path: root/include/JSystem/J2DGraph
diff options
context:
space:
mode:
authorTeddy Heidmann <ateddy42@users.noreply.github.com>2026-08-26 11:11:18 -0700
committerGitHub <noreply@github.com>2026-08-26 14:11:18 -0400
commitefe690876c607a7b467cae557402b56200bbb363 (patch)
tree114dacbe39713e8f6f5260cd9cfe64833c67b6f3 /include/JSystem/J2DGraph
parente2157237513a4170c5c00bf2b56ef96753b4c63a (diff)
d_menu_dmap (#1166)
* initial structure from ghidra * dMd_HIO_c fields and constructor * screenSet progress * More screenSet * boss door * initialize * treasureDraw * largest method ever * alphas * cursors * notes * itemScale * so many pointers * pls no more string logic * boss animes * deletes are weird in ghidra * _draw() * cleanup for review, configure matching * fix dMap_GetFloorNoForDmap * not matching GZLJ01 * different fix for d_map.h * GZLJ01 * GZLP01 * D44J01 * missing import * replace !=0 with != NULL for pointers * Revert "D44J01" This reverts commit b0ce19b9f1cdeb6dc371f142c9f257f04c51af04.
Diffstat (limited to 'include/JSystem/J2DGraph')
-rw-r--r--include/JSystem/J2DGraph/J2DWindow.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/JSystem/J2DGraph/J2DWindow.h b/include/JSystem/J2DGraph/J2DWindow.h
index acf6dc00..7b28500c 100644
--- a/include/JSystem/J2DGraph/J2DWindow.h
+++ b/include/JSystem/J2DGraph/J2DWindow.h
@@ -36,14 +36,14 @@ public:
void drawContentsTexture(f32, f32, f32, f32);
void setTevMode(JUTTexture*, JUtility::TColor, JUtility::TColor);
- void getBlack() const {}
+ const JUtility::TColor& getBlack() const { return mBlack; }
void getContentsColor(TContentsColor& param_0) const {
param_0.mTL = mColorTL;
param_0.mTR = mColorTR;
param_0.mBL = mColorBL;
param_0.mBR = mColorBR;
}
- void getWhite() const {}
+ const JUtility::TColor& getWhite() const { return mWhite; }
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); }