diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2021-05-09 12:26:28 -0400 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2021-05-09 12:26:28 -0400 |
commit | b1dbadbdd397cb8c9e85fa48d9184949c921a8f3 (patch) | |
tree | a14477529739a4c5262cc5fbfa08a0ac4bb8122d /engine | |
parent | efd1006917b438ff683e8f702adbe6b4d0733a0f (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 d230c5347..41b330552 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 |