diff options
| author | pikalaxalt <PikalaxALT@gmail.com> | 2016-05-10 12:31:49 -0400 |
|---|---|---|
| committer | pikalaxalt <PikalaxALT@gmail.com> | 2016-05-10 12:31:49 -0400 |
| commit | ae36ef2c7fb722b7480d73c7a95a5d1e2ece7831 (patch) | |
| tree | c6cfbfa143807b10f3baf86eeed3ff6275237c72 /event | |
| parent | e95d42e0af1921f516c1fd4269024aa3f586514f (diff) | |
Labeled every function in ROM0 that's referenced in the source
Diffstat (limited to 'event')
| -rw-r--r-- | event/battle_tower.asm | 4 | ||||
| -rwxr-xr-x | event/bug_contest_judging.asm | 4 | ||||
| -rwxr-xr-x | event/celebi.asm | 4 | ||||
| -rwxr-xr-x | event/field_moves.asm | 4 | ||||
| -rwxr-xr-x | event/happiness_egg.asm | 4 | ||||
| -rwxr-xr-x | event/magnet_train.asm | 8 | ||||
| -rw-r--r-- | event/mom.asm | 4 | ||||
| -rwxr-xr-x | event/special.asm | 4 |
8 files changed, 18 insertions, 18 deletions
diff --git a/event/battle_tower.asm b/event/battle_tower.asm index 0f4117c01..de6022145 100644 --- a/event/battle_tower.asm +++ b/event/battle_tower.asm @@ -157,9 +157,9 @@ BattleTower_ExecuteJumptable: ; 8b25b ; 8b281 .GetTextPointers: ; 8b281 -rept 3 inc de -endr + inc de + inc de ld a, [de] ld l, a inc de diff --git a/event/bug_contest_judging.asm b/event/bug_contest_judging.asm index be66b6ba0..1ece896d6 100755 --- a/event/bug_contest_judging.asm +++ b/event/bug_contest_judging.asm @@ -340,9 +340,9 @@ ComputeAIContestantScores: ; 138b0 jr z, .loop2 ld c, a ld b, 0 -rept 3 add hl, bc -endr + add hl, bc + add hl, bc ld a, [hli] ld [wBugContestTempMon], a ld a, [hli] diff --git a/event/celebi.asm b/event/celebi.asm index 2c2f6e57b..05f26fe2e 100755 --- a/event/celebi.asm +++ b/event/celebi.asm @@ -55,9 +55,9 @@ Special_CelebiShrineEvent: ; 4989a ld c, $4 .OAMloop: ld [hli], a -rept 3 inc hl -endr + inc hl + inc hl inc a dec c jr nz, .OAMloop diff --git a/event/field_moves.asm b/event/field_moves.asm index 1218a6f11..c1b3bc236 100755 --- a/event/field_moves.asm +++ b/event/field_moves.asm @@ -398,9 +398,9 @@ FlyToAnim: ; 8cb33 ld c, $4 .loop2 ld [hli], a -rept 3 inc hl -endr + inc hl + inc hl inc a dec c jr nz, .loop2 diff --git a/event/happiness_egg.asm b/event/happiness_egg.asm index 1e8c2a853..e7eece7c8 100755 --- a/event/happiness_egg.asm +++ b/event/happiness_egg.asm @@ -67,9 +67,9 @@ ChangeHappiness: ; 71c2 dec c ld b, 0 ld hl, .Actions -rept 3 add hl, bc -endr + add hl, bc + add hl, bc ld d, 0 add hl, de ld a, [hl] diff --git a/event/magnet_train.asm b/event/magnet_train.asm index 001352ce0..84b420f2f 100755 --- a/event/magnet_train.asm +++ b/event/magnet_train.asm @@ -48,7 +48,7 @@ Special_MagnetTrain: ; 8cc04 callab PlaySpriteAnimations call MagnetTrain_Jumptable call MagnetTrain_UpdateLYOverrides - call Function3b0c + call PushLYOverrides call DelayFrame jr .loop @@ -149,9 +149,9 @@ MagntTrain_LoadGFX_PlayMusic: ; 8ccc9 xor a ld [hli], a ld a, [wMagnetTrainInitPosition] -rept 3 ld [hli], a -endr + ld [hli], a + ld [hli], a ld de, MUSIC_MAGNET_TRAIN call PlayMusic2 ret @@ -426,7 +426,7 @@ MagnetTrain_Jumptable_FirstRunThrough: ; 8ceae callba PlaySpriteAnimations call MagnetTrain_Jumptable call MagnetTrain_UpdateLYOverrides - call Function3b0c + call PushLYOverrides call DelayFrame ld a, [rSVBK] push af diff --git a/event/mom.asm b/event/mom.asm index 0a1e7d1ae..70f22d6a1 100644 --- a/event/mom.asm +++ b/event/mom.asm @@ -588,9 +588,9 @@ Function16571: ; 16571 push de ld e, a ld d, 0 -rept 3 add hl, de -endr + add hl, de + add hl, de pop de ret ; 16613 diff --git a/event/special.asm b/event/special.asm index c5ddabbcf..f1228abc6 100755 --- a/event/special.asm +++ b/event/special.asm @@ -188,9 +188,9 @@ MassageOrHaircut: ; 7420 .loop sub [hl] jr c, .ok -rept 3 inc hl -endr + inc hl + inc hl jr .loop .ok |
