diff options
author | GriffinR <griffin.g.richards@gmail.com> | 2022-01-06 22:33:00 -0500 |
---|---|---|
committer | GriffinR <griffin.g.richards@gmail.com> | 2022-01-06 22:33:00 -0500 |
commit | 713cd6616ea8c159bbcaeba223cbb6097a74e393 (patch) | |
tree | e8b4edf44913dbf7e30379ebe8c6c8d1748aa3ee /src | |
parent | 23f5c9fd5c366d986be66df37cf9b72ba077aa6f (diff) |
Add glow tile empty
Diffstat (limited to 'src')
-rw-r--r-- | src/data/pokedex_area_glow.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/data/pokedex_area_glow.h b/src/data/pokedex_area_glow.h index 0da4f1dac..ff24d8d6c 100644 --- a/src/data/pokedex_area_glow.h +++ b/src/data/pokedex_area_glow.h @@ -56,6 +56,7 @@ enum { // with edge flags are cancelled out before lookup. For example, GLOW_CORNER_TL | GLOW_EDGE_L // will never be read, and has the same value as GLOW_EDGE_L. static const u8 sAreaGlowTilemapMapping[] = { + [0] = GLOW_TILE_EMPTY, [GLOW_EDGE_R] = GLOW_TILE_EDGE_R, [GLOW_EDGE_L] = GLOW_TILE_EDGE_L, [GLOW_EDGE_L | GLOW_EDGE_R] = GLOW_TILE_EDGE_L_R, |