diff options
Diffstat (limited to 'engine/events.asm')
-rw-r--r-- | engine/events.asm | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/engine/events.asm b/engine/events.asm index 1b85c7f7c..e63d24b4f 100644 --- a/engine/events.asm +++ b/engine/events.asm @@ -472,7 +472,9 @@ Function968ec: ; 968ec ld a, [hli] ld h, [hl] ld l, a - add_n_times hl, de, 4 +rept 4 + add hl,de +endr call GetMapScriptHeaderBank call GetFarHalfword @@ -1043,7 +1045,9 @@ Function96beb: ; 96beb ld c, a ld b, 0 ld hl, ScriptPointers96c0c - add_n_times hl, bc, 3 +rept 3 + add hl,bc +endr ld a, [hli] ld [ScriptBank], a ld a, [hli] |