Start documenting naming screen
This commit is contained in:
@@ -49,7 +49,7 @@ static const u16 sTextWindowFrame18_Pal[] = INCBIN_U16("graphics/text_window/18.
|
||||
static const u16 sTextWindowFrame19_Pal[] = INCBIN_U16("graphics/text_window/19.gbapal");
|
||||
static const u16 sTextWindowFrame20_Pal[] = INCBIN_U16("graphics/text_window/20.gbapal");
|
||||
|
||||
static const u16 sUnknown_0851017C[][16] =
|
||||
static const u16 sTextWindowPalettes[][16] =
|
||||
{
|
||||
INCBIN_U16("graphics/text_window/message_box.gbapal"),
|
||||
INCBIN_U16("graphics/text_window/text_pal1.gbapal"),
|
||||
@@ -160,7 +160,7 @@ void rbox_fill_rectangle(u8 windowId)
|
||||
FillBgTilemapBufferRect(bgLayer, 0, tilemapLeft - 1, tilemapTop - 1, width + 2, height + 2, 0x11);
|
||||
}
|
||||
|
||||
const u16 *stdpal_get(u8 id)
|
||||
const u16 *GetTextWindowPalette(u8 id)
|
||||
{
|
||||
switch (id)
|
||||
{
|
||||
@@ -182,7 +182,7 @@ const u16 *stdpal_get(u8 id)
|
||||
break;
|
||||
}
|
||||
|
||||
return (const u16 *)(sUnknown_0851017C) + id;
|
||||
return (const u16 *)(sTextWindowPalettes) + id;
|
||||
}
|
||||
|
||||
const u16 *GetOverworldTextboxPalettePtr(void)
|
||||
|
||||
Reference in New Issue
Block a user