diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-11-09 15:16:44 -0500 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-11-09 15:20:35 -0500 |
commit | bc8636d68805116ef126feecc07cde63238490da (patch) | |
tree | d88fed0393eb69c8c37fbaf7ee21f7dd3af289c9 /engine/printer | |
parent | 6e20c30f6e48ba36237d42b13ea6e6827b62ff40 (diff) |
Replace $0 with 0 for "ld l, a / ld h, 0" idiom
Diffstat (limited to 'engine/printer')
-rw-r--r-- | engine/printer/printer.asm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engine/printer/printer.asm b/engine/printer/printer.asm index 5b17c52f..302119f7 100644 --- a/engine/printer/printer.asm +++ b/engine/printer/printer.asm @@ -848,7 +848,7 @@ Printer_GetMonGender: Printer_GetBoxMonSpecies: push hl ld e, a - ld d, $0 + ld d, 0 ld a, [wAddrOfBoxToPrint] ld l, a ld a, [wAddrOfBoxToPrint + 1] |