diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-11-09 15:17:03 -0500 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-11-09 15:20:40 -0500 |
commit | 17894e5f39520db2f21452d056c4683915086d8d (patch) | |
tree | 935e2d8231b5a73acfb9e648a9e12eff067f11ee /engine/items/items.asm | |
parent | 03e149e55933cb9725a5785f21136f9fc3f3cade (diff) |
Replace $0 with 0 for "ld l, a / ld h, 0" idiom
Diffstat (limited to 'engine/items/items.asm')
-rw-r--r-- | engine/items/items.asm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engine/items/items.asm b/engine/items/items.asm index 42381b411..cfdd4a4c5 100644 --- a/engine/items/items.asm +++ b/engine/items/items.asm @@ -240,7 +240,7 @@ RemoveItemFromPocket: cp c jr nc, .ok ; memory ld c, a - ld b, $0 + ld b, 0 add hl, bc add hl, bc ld a, [wCurItem] |