diff options
Diffstat (limited to 'engine/printer')
| -rw-r--r-- | engine/printer/printer.asm | 2 | ||||
| -rw-r--r-- | engine/printer/printer2.asm | 14 |
2 files changed, 8 insertions, 8 deletions
diff --git a/engine/printer/printer.asm b/engine/printer/printer.asm index be0aecf1..fd4002c5 100644 --- a/engine/printer/printer.asm +++ b/engine/printer/printer.asm @@ -873,7 +873,7 @@ PrintPCBox_PlaceBoxMonInfo: ld a, [de] cp $ff jr z, .done - ld [wd11e], a + ld [wPokedexNum], a push bc push hl push de diff --git a/engine/printer/printer2.asm b/engine/printer/printer2.asm index 4a7b68db..944cee0f 100644 --- a/engine/printer/printer2.asm +++ b/engine/printer/printer2.asm @@ -42,9 +42,9 @@ Printer_GetMonStats: lb bc, 2, 3 call PrintNumber - ld a, [wMonHeader] - ld [wPokeBallAnimData], a - ld [wd0b5], a + ld a, [wMonHIndex] + ld [wPokedexNum], a + ld [wCurSpecies], a ld hl, wPartyMonNicks call .GetNamePointer hlcoord 8, 2 @@ -60,7 +60,7 @@ Printer_GetMonStats: inc hl ld [hl], $f2 inc hl - ld de, wPokeBallAnimData + ld de, wPokedexNum lb bc, $80 | 1, 3 call PrintNumber @@ -85,11 +85,11 @@ Printer_GetMonStats: hlcoord 9, 8 ld de, .Stats ldh a, [hUILayoutFlags] - set 2, a + set BIT_SINGLE_SPACED_LINES, a ldh [hUILayoutFlags], a call PlaceString ldh a, [hUILayoutFlags] - res 2, a + res BIT_SINGLE_SPACED_LINES, a ldh [hUILayoutFlags], a hlcoord 16, 8 @@ -151,7 +151,7 @@ Printer_GetMonStats: .PlaceMoveName: and a jr z, .no_move - ld [wPokeBallAnimData], a + ld [wNamedObjectIndex], a call GetMoveName jr .place_string |
