Strangest match

This commit is contained in:
N 2021-02-18 20:07:33 -05:00 committed by huderlem
parent 10c77f1bc2
commit cab3728e96
2 changed files with 4 additions and 4 deletions

View File

@ -1,8 +1,8 @@
#ifndef GUARD_ITEM_ICON_H
#define GUARD_ITEM_ICON_H
extern void *gItemIconDecompressionBuffer;
extern void *gItemIcon4x4Buffer;
extern u8 *gItemIconDecompressionBuffer;
extern u8 *gItemIcon4x4Buffer;
extern const struct SpriteTemplate gItemIconSpriteTemplate;

View File

@ -7,8 +7,8 @@
#include "constants/items.h"
// EWRAM vars
EWRAM_DATA void *gItemIconDecompressionBuffer = NULL;
EWRAM_DATA void *gItemIcon4x4Buffer = NULL;
EWRAM_DATA u8 *gItemIconDecompressionBuffer = NULL;
EWRAM_DATA u8 *gItemIcon4x4Buffer = NULL;
// const rom data
#include "data/item_icon_table.h"