diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2018-06-24 21:23:51 -0400 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2018-06-24 21:23:51 -0400 |
commit | e2fb7acac0e3c1d598021b52fc2583dd983321bc (patch) | |
tree | ea5922596ce167e5b0485ea3bacd65f43339ca60 /home/print_level.asm | |
parent | 1a888f22004aec967d2b6049ede7e04b1815f956 (diff) | |
parent | 364854623267a8a39242243b0cdf80144e868642 (diff) |
Merge branch 'master' of https://github.com/pret/pokecrystal
# Conflicts:
# engine/items/mart.asm
Diffstat (limited to 'home/print_level.asm')
-rw-r--r-- | home/print_level.asm | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/home/print_level.asm b/home/print_level.asm index 578c7cd78..2ebbbf980 100644 --- a/home/print_level.asm +++ b/home/print_level.asm @@ -1,4 +1,4 @@ -PrintLevel:: ; 382d +PrintLevel:: ; Print wTempMonLevel at hl ld a, [wTempMonLevel] @@ -14,18 +14,15 @@ PrintLevel:: ; 382d dec hl inc c jr Print8BitNumRightAlign -; 383d -PrintLevel_Force3Digits:: ; 383d +PrintLevel_Force3Digits:: ; Print :L and all 3 digits ld [hl], "<LV>" inc hl ld c, 3 -; 3842 -Print8BitNumRightAlign:: ; 3842 +Print8BitNumRightAlign:: ld [wd265], a ld de, wd265 ld b, PRINTNUM_RIGHTALIGN | 1 jp PrintNum -; 384d |