summaryrefslogtreecommitdiff
path: root/src/bg_palette_buffer.c
diff options
context:
space:
mode:
authorSeth Barberee <seth.barberee@gmail.com>2021-09-23 22:49:43 -0700
committerGitHub <noreply@github.com>2021-09-24 00:49:43 -0500
commit0d3b11e81a215875fc533db17895613c47a4da73 (patch)
treed392a83755f1b7631c241c100c9e778d96ef5527 /src/bg_palette_buffer.c
parent8237e29a164211eb2ec4cd161eb4183cc1947fee (diff)
Data work and decomp some mail/pelipper board (#54)
* data work and decomp some mail/pelipper board * resuce -> rescue * label more data
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);