diff options
| author | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2025-04-24 14:53:58 -0400 |
|---|---|---|
| committer | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2025-04-24 14:53:58 -0400 |
| commit | fa7d4d28965733a680d5d7e00a10485c66a246df (patch) | |
| tree | 2f49dcae479c9e7b72c276f5cae604a93425ceee /src/f_op/f_op_msg_mng.cpp | |
| parent | ce8d17ec0835c9679e54dc7a6700c042825352f9 (diff) | |
Fix relocation and data value mismatches
Diffstat (limited to 'src/f_op/f_op_msg_mng.cpp')
| -rw-r--r-- | src/f_op/f_op_msg_mng.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/f_op/f_op_msg_mng.cpp b/src/f_op/f_op_msg_mng.cpp index 18e932cd..b6b1b429 100644 --- a/src/f_op/f_op_msg_mng.cpp +++ b/src/f_op/f_op_msg_mng.cpp @@ -1667,8 +1667,8 @@ void fopMsgM_arrowAnime(J2DPicture* param_1, s16* param_2) { black.a = 0x0; u8 alpha = 0; - static GXColor color1 = {0xFF, 0x50, 0x50, 0x00}; - static GXColor color2 = {0xFF, 0x96, 0x96, 0x00}; + static const GXColor color1 = {0xFF, 0x50, 0x50, 0x00}; + static const GXColor color2 = {0xFF, 0x96, 0x96, 0x00}; if(*param_2 < 0x16) { float temp = fopMsgM_valueIncrease(0x16, *param_2, 2); |
