From 04a29951c777f624dd0059a1540a60a287f75e5d Mon Sep 17 00:00:00 2001 From: Ninjdai <65647523+Ninjdai1@users.noreply.github.com> Date: Fri, 12 Jan 2024 15:40:35 +0100 Subject: [PATCH] Fix RHH ROM header section (#3980) RHH ROM header was not in the correct section --- src/rom_header_rhh.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/rom_header_rhh.c b/src/rom_header_rhh.c index 2e141670a7..ed4614503a 100644 --- a/src/rom_header_rhh.c +++ b/src/rom_header_rhh.c @@ -16,6 +16,7 @@ struct RHHRomHeader /*0x09*/ u8 expansionVersionFlags; }; +__attribute__((section(".text.consts"))) static const struct RHHRomHeader sRHHRomHeader = { .rhh_magic = { 'R', 'H', 'H', 'E', 'X', 'P' },