diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2021-05-09 12:47:43 -0400 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2021-05-09 12:47:43 -0400 |
commit | 65d1e12d6ac15937977d28651a656ff255ea0d5d (patch) | |
tree | 53cecd90548df6957851b2341cdaf2a060d68255 /engine | |
parent | 2a9ae6ecefe12e798c15e7a37a77005f5373aa9d (diff) |
Require rgbds 0.5.1
Use some new features: \<10> macro args, SECTION UNION, SIZEOF/STARTOF, and CHARLEN/CHARSUB
Diffstat (limited to 'engine')
-rw-r--r-- | engine/games/unown_puzzle.asm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engine/games/unown_puzzle.asm b/engine/games/unown_puzzle.asm index d230c534..41b33055 100644 --- a/engine/games/unown_puzzle.asm +++ b/engine/games/unown_puzzle.asm @@ -14,8 +14,8 @@ _UnownPuzzle: xor a ldh [hBGMapMode], a call DisableLCD - ld hl, wUnownPuzzle ; includes wPuzzlePieces - ld bc, wUnownPuzzleEnd - wUnownPuzzle + ld hl, STARTOF("Miscellaneous") ; includes wPuzzlePieces + ld bc, SIZEOF("Miscellaneous") xor a call ByteFill ld hl, UnownPuzzleCursorGFX |