diff options
| author | Trueffel <106771418+Trueffeloot@users.noreply.github.com> | 2024-03-15 06:38:43 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-03-15 07:38:43 +0200 |
| commit | 75dcb319802e1b8e2ac317952c5d1bb3364894e8 (patch) | |
| tree | acdb01f8d05db01f09d2b7e182c376c6dc578f1b /include/JSystem/J2DGraph | |
| parent | e4d6e610f644e919928579256d925d83c8e28684 (diff) | |
d_menu_skill OK (#2096)
* d_menu_skill OK
* remove asm and update progress
Diffstat (limited to 'include/JSystem/J2DGraph')
| -rw-r--r-- | include/JSystem/J2DGraph/J2DPicture.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/include/JSystem/J2DGraph/J2DPicture.h b/include/JSystem/J2DGraph/J2DPicture.h index c35a7bb4ab..3130805ea9 100644 --- a/include/JSystem/J2DGraph/J2DPicture.h +++ b/include/JSystem/J2DGraph/J2DPicture.h @@ -97,7 +97,11 @@ public: /* 802FF634 */ virtual u8 getTextureCount() const; /* 80053C6C */ virtual bool setBlack(JUtility::TColor); /* 80053C44 */ virtual bool setWhite(JUtility::TColor); - /* 8018BEE0 */ virtual bool setBlackWhite(JUtility::TColor, JUtility::TColor); + /* 8018BEE0 */ virtual bool setBlackWhite(JUtility::TColor i_black, JUtility::TColor i_white) { + mBlack = i_black; + mWhite = i_white; + return 1; + } /* 801DFA4C */ virtual JUtility::TColor getBlack() const; /* 801DFA40 */ virtual JUtility::TColor getWhite() const; /* 8025603C */ virtual bool getMaterial() const; |
