summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Expand-the-Town-Map-Tile-Set.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/Expand-the-Town-Map-Tile-Set.md b/Expand-the-Town-Map-Tile-Set.md
index 132c708..cbdb8db 100644
--- a/Expand-the-Town-Map-Tile-Set.md
+++ b/Expand-the-Town-Map-Tile-Set.md
@@ -153,9 +153,9 @@ Second, edit [engine/pokegear/pokegear.asm](https://github.com/pret/pokecrystal/
ld a, [hli]
push hl
-; The palette map covers tiles $00 to $5f; $60 and above use palette 0
-+; The palette map covers tiles $00 to $76, $77 and above aren't available
++; The palette map covers tiles $00 to $77, $78 and above aren't available
- cp $60
-+ cp $77
++ cp $78
jr nc, .pal0
```
```diff