From e3af20b907fad59bcbee7d36ab4912d0cc5f2935 Mon Sep 17 00:00:00 2001 From: Rangi Date: Sun, 5 Oct 2025 10:53:31 -0400 Subject: Consistently use `ld [hli]`/`ld [hld]`, not `ldi`/`ldd` --- engine/battle/move_effects/substitute.asm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'engine/battle/move_effects') diff --git a/engine/battle/move_effects/substitute.asm b/engine/battle/move_effects/substitute.asm index b1fd8ac2..e4311209 100644 --- a/engine/battle/move_effects/substitute.asm +++ b/engine/battle/move_effects/substitute.asm @@ -39,7 +39,7 @@ SubstituteEffect_: jr c, .notEnoughHP ; underflow means user would be left with negative health ; bug: since it only branches on carry, it will possibly leave user with 0 HP .userHasZeroOrMoreHP - ldi [hl], a ; save resulting HP after subtraction into current HP + ld [hli], a ; save resulting HP after subtraction into current HP ld [hl], d ld h, b ld l, c -- cgit v1.3.1-sl0p