diff options
| author | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-07-04 01:00:45 -0400 |
|---|---|---|
| committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-07-04 01:00:45 -0400 |
| commit | e4e0af4d6713161d46cc0a1d580645ca40d6fa81 (patch) | |
| tree | 34468478ff888022c58fdb6548a02e4069e1fba9 /engine/pokemon | |
| parent | Make suggested changes from review (diff) | |
| download | pokeyellow-e4e0af4d6713161d46cc0a1d580645ca40d6fa81.tar.gz pokeyellow-e4e0af4d6713161d46cc0a1d580645ca40d6fa81.tar.xz pokeyellow-e4e0af4d6713161d46cc0a1d580645ca40d6fa81.zip | |
Remove remaining raw $xxxx values, and replace "+ -1" with "- 1" (supported by rgbds 0.4.0)
Diffstat (limited to 'engine/pokemon')
| -rwxr-xr-x | engine/pokemon/status_screen.asm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engine/pokemon/status_screen.asm b/engine/pokemon/status_screen.asm index f66cdf5a..b262a8b7 100755 --- a/engine/pokemon/status_screen.asm +++ b/engine/pokemon/status_screen.asm @@ -254,7 +254,7 @@ PrintStatsBox: ld c, 8 call TextBoxBorder ; Draws the box coord hl, 1, 9 ; Start printing stats from here - ld bc, $0019 ; Number offset + ld bc, $19 ; Number offset jr .PrintStats .DifferentBox coord hl, 9, 2 @@ -262,7 +262,7 @@ PrintStatsBox: ld c, 9 call TextBoxBorder coord hl, 11, 3 - ld bc, $0018 + ld bc, $18 .PrintStats push bc push hl |
