From 14a87f83b3f93051fec0b2d7009f61bd5b4c736a Mon Sep 17 00:00:00 2001 From: Christopher Leggett Date: Wed, 13 Jul 2022 21:24:20 -0400 Subject: [PATCH] Makes sure custom get item textboxes match. Specifically, they are all bottom of the screen and blue. --- soh/src/code/z_message_PAL.c | 1 + 1 file changed, 1 insertion(+) diff --git a/soh/src/code/z_message_PAL.c b/soh/src/code/z_message_PAL.c index 46b8b7e94..87bc255ab 100644 --- a/soh/src/code/z_message_PAL.c +++ b/soh/src/code/z_message_PAL.c @@ -1738,6 +1738,7 @@ void Message_OpenText(GlobalContext* globalCtx, u16 textId) { } else if (gSaveContext.n64ddFlag && textId == 0xF8) { msgCtx->msgLength = font->msgLength = Randomizer_GetCustomGetItemMessage( GET_PLAYER(globalCtx)->getItemId, font->msgBuf, sizeof(font->msgBuf)); + font->charTexBuf[0] = 0x23; } else { msgCtx->msgLength = font->msgLength; char* src = (uintptr_t)font->msgOffset;