Merge pull request #1911 from Kermalis/remove-ewram-in-headers

Remove ewram in headers
This commit is contained in:
GriffinR
2023-08-10 20:16:12 -04:00
committed by GitHub
3 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
#ifndef GUARD_CREDITS_H #ifndef GUARD_CREDITS_H
#define GUARD_CREDITS_H #define GUARD_CREDITS_H
extern EWRAM_DATA bool8 gHasHallOfFameRecords; extern bool8 gHasHallOfFameRecords;
void CB2_StartCreditsSequence(void); void CB2_StartCreditsSequence(void);
+2 -2
View File
@@ -53,8 +53,8 @@ struct Decoration
}; };
extern const struct Decoration gDecorations[]; extern const struct Decoration gDecorations[];
extern EWRAM_DATA u8 *gCurDecorationItems; extern u8 *gCurDecorationItems;
extern EWRAM_DATA u8 gCurDecorationIndex; extern u8 gCurDecorationIndex;
void InitDecorationContextItems(void); void InitDecorationContextItems(void);
void DoSecretBaseDecorationMenu(u8 taskId); void DoSecretBaseDecorationMenu(u8 taskId);
+1 -1
View File
@@ -1,7 +1,7 @@
#ifndef GUARD_SHOP_H #ifndef GUARD_SHOP_H
#define GUARD_SHOP_H #define GUARD_SHOP_H
extern EWRAM_DATA struct ItemSlot gMartPurchaseHistory[3]; extern struct ItemSlot gMartPurchaseHistory[3];
void CreatePokemartMenu(const u16 *); void CreatePokemartMenu(const u16 *);
void CreateDecorationShop1Menu(const u16 *); void CreateDecorationShop1Menu(const u16 *);