From 100188ac439991954f82dd7788dd61e8b7d89919 Mon Sep 17 00:00:00 2001 From: GriffinR Date: Mon, 6 Apr 2020 10:01:35 -0400 Subject: Move gfx out of data --- src/quest_log.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/quest_log.c') diff --git a/src/quest_log.c b/src/quest_log.c index 51e09e899..4bb8c84ec 100644 --- a/src/quest_log.c +++ b/src/quest_log.c @@ -289,7 +289,7 @@ static const struct WindowTemplate sQuestLogHeaderWindowTemplates[3] = { static const u8 sTextColors[3] = {TEXT_DYNAMIC_COLOR_6, TEXT_COLOR_WHITE, TEXT_DYNAMIC_COLOR_3}; -static const u16 gUnknown_8456638[] = INCBIN_U16("data/graphics/unknown_8456638.bin"); +static const u16 gUnknown_8456638[] = INCBIN_U16("graphics/unknown/unknown_8456638.bin"); static const u8 sQuestLogTextLineYCoords[] = {17, 10, 3}; @@ -1829,7 +1829,7 @@ void sub_8112E3C(u8 a0, struct UnkStruct_300201C * a1, u16 a2) // Probable file boundary, help_message.c below, quest_log.c above -const u16 gUnknown_84566A8[] = INCBIN_U16("data/graphics/unknown_84566a8.bin"); +const u16 gUnknown_84566A8[] = INCBIN_U16("graphics/unknown/unknown_84566a8.bin"); static const struct WindowTemplate sHelpMessageWindowTemplate = { 0x00, 0, 15, 30, 5, 15, 0x008F -- cgit v1.2.3 From 1536737da4e1ee764f1520235d5be44dae345825 Mon Sep 17 00:00:00 2001 From: GriffinR Date: Mon, 6 Apr 2020 10:51:07 -0400 Subject: Fix some static labels --- src/quest_log.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/quest_log.c') diff --git a/src/quest_log.c b/src/quest_log.c index 4bb8c84ec..5dc9f7f11 100644 --- a/src/quest_log.c +++ b/src/quest_log.c @@ -289,7 +289,7 @@ static const struct WindowTemplate sQuestLogHeaderWindowTemplates[3] = { static const u8 sTextColors[3] = {TEXT_DYNAMIC_COLOR_6, TEXT_COLOR_WHITE, TEXT_DYNAMIC_COLOR_3}; -static const u16 gUnknown_8456638[] = INCBIN_U16("graphics/unknown/unknown_8456638.bin"); +static const u16 sUnknown_8456638[] = INCBIN_U16("graphics/unknown/unknown_8456638.bin"); static const u8 sQuestLogTextLineYCoords[] = {17, 10, 3}; @@ -1134,7 +1134,7 @@ static void DrawQuestLogSceneDescription(void) static void sub_8111D90(u8 a0) { - const u16 *src = gUnknown_8456638; + const u16 *src = sUnknown_8456638; u16 *buffer = Alloc(0x1680); u8 i, j, y; -- cgit v1.2.3