diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/graphics.h | 10 | ||||
-rw-r--r-- | include/item.h | 4 |
2 files changed, 10 insertions, 4 deletions
diff --git a/include/graphics.h b/include/graphics.h index 4d042b3b6..12ffd16fe 100644 --- a/include/graphics.h +++ b/include/graphics.h @@ -2440,12 +2440,16 @@ extern const u8 gBagScreen_Gfx[]; extern const u8 gBagScreenMale_Pal[]; extern const u8 gBagScreenFemale_Pal[]; extern const u16 gUnknown_08E77004[]; - +extern const u8 gBuyMenuFrame_Gfx[]; +extern const u8 gMenuMoneyPal[]; +extern const u8 gBuyMenuFrame_Tilemap[]; +extern const u8 gMenuMoneyGfx[]; extern const u8 gMenuPokeblock_Gfx[]; -extern const u8 gMenuPokeblock_Tilemap[]; extern const u8 gMenuPokeblock_Pal[]; - extern const u8 gMenuPokeblockDevice_Gfx[]; extern const u8 gMenuPokeblockDevice_Pal[]; +extern const u8 gMenuPokeblock_Tilemap[]; + +extern const u8 gUnknown_08E96EC8[]; #endif // GUARD_GRAPHICS_H diff --git a/include/item.h b/include/item.h index f51ea3ae5..54a252302 100644 --- a/include/item.h +++ b/include/item.h @@ -28,7 +28,9 @@ struct BagPocket u8 capacity; }; -extern struct BagPocket gBagPockets[5]; +#define NUM_BAG_POCKETS 5 + +extern const struct BagPocket gBagPockets[NUM_BAG_POCKETS]; void CopyItemName(u16 itemId, u8 *string); bool8 IsBagPocketNonEmpty(u8 pocket); |