Remove ewram in headers

This commit is contained in:
Kermalis 2023-08-10 20:11:07 -04:00
parent 60a6c9d160
commit 9226b23fb8
3 changed files with 4 additions and 4 deletions

View File

@ -1,7 +1,7 @@
#ifndef GUARD_CREDITS_H
#define GUARD_CREDITS_H
extern EWRAM_DATA bool8 gHasHallOfFameRecords;
extern bool8 gHasHallOfFameRecords;
void CB2_StartCreditsSequence(void);

View File

@ -53,8 +53,8 @@ struct Decoration
};
extern const struct Decoration gDecorations[];
extern EWRAM_DATA u8 *gCurDecorationItems;
extern EWRAM_DATA u8 gCurDecorationIndex;
extern u8 *gCurDecorationItems;
extern u8 gCurDecorationIndex;
void InitDecorationContextItems(void);
void DoSecretBaseDecorationMenu(u8 taskId);

View File

@ -1,7 +1,7 @@
#ifndef GUARD_SHOP_H
#define GUARD_SHOP_H
extern EWRAM_DATA struct ItemSlot gMartPurchaseHistory[3];
extern struct ItemSlot gMartPurchaseHistory[3];
void CreatePokemartMenu(const u16 *);
void CreateDecorationShop1Menu(const u16 *);