summaryrefslogtreecommitdiff
path: root/src/bg_palette_buffer.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/bg_palette_buffer.c')
-rw-r--r--src/bg_palette_buffer.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bg_palette_buffer.c b/src/bg_palette_buffer.c
index 9917adf..6a19362 100644
--- a/src/bg_palette_buffer.c
+++ b/src/bg_palette_buffer.c
@@ -3,8 +3,8 @@
#define BG_PALETTE_BUFFER_SIZE 512
#define BG_PALETTE_BUFFER_CHUNK_SIZE 16
-extern u16 gBGPaletteBuffer[BG_PALETTE_BUFFER_SIZE];
-extern bool8 gBGPaletteUsed[BG_PALETTE_BUFFER_SIZE / BG_PALETTE_BUFFER_CHUNK_SIZE];
+EWRAM_DATA u16 gBGPaletteBuffer[BG_PALETTE_BUFFER_SIZE];
+EWRAM_DATA bool8 gBGPaletteUsed[BG_PALETTE_BUFFER_SIZE / BG_PALETTE_BUFFER_CHUNK_SIZE];
extern void CpuCopy(void* src, void* dest, u32 size);