Use ASCII quotes in comments

This commit is contained in:
Rangi 2020-07-06 21:15:12 -04:00
parent dd08b8dd6b
commit 77ed5f3820
5 changed files with 9 additions and 9 deletions

View file

@ -425,7 +425,7 @@ ShareMoveAnimations:
and a
ret z
; opponents turn
; opponent's turn
ld a, [wAnimationID]

View file

@ -3255,14 +3255,14 @@ PrintGhostText:
ldh a, [hWhoseTurn]
and a
jr nz, .Ghost
ld a, [wBattleMonStatus] ; players turn
ld a, [wBattleMonStatus] ; player's turn
and SLP | (1 << FRZ)
ret nz
ld hl, ScaredText
call PrintText
xor a
ret
.Ghost ; ghosts turn
.Ghost ; ghost's turn
ld hl, GetOutText
call PrintText
xor a

View file

@ -1,6 +1,6 @@
GymStatues:
; if in a gym and have the corresponding badge, a = GymStatueText2_id and jp PrintPredefTextID
; if in a gym and dont have the corresponding badge, a = GymStatueText1_id and jp PrintPredefTextID
; if in a gym and don't have the corresponding badge, a = GymStatueText1_id and jp PrintPredefTextID
; else ret
call EnableAutoTextBoxDrawing
ld a, [wSpritePlayerStateData1FacingDirection]