Skip to content

Commit fd043a6

Browse files
committed
Fix typos
1 parent b4bae4a commit fd043a6

File tree

7 files changed

+11
-11
lines changed

7 files changed

+11
-11
lines changed

engine/battle/core.asm

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2375,10 +2375,10 @@ PartyMenuOrRockOrRun:
23752375
jr nz, .doEnemyMonAnimation
23762376
; enemy mon doesn't have substitute
23772377
ld a, [wEnemyMonMinimized]
2378-
and a ; has the enemy mon used Minimise?
2378+
and a ; has the enemy mon used Minimize?
23792379
ld hl, AnimationMinimizeMon
23802380
jr nz, .doEnemyMonAnimation
2381-
; enemy mon is not minimised
2381+
; enemy mon is not minimized
23822382
ld a, [wEnemyMonSpecies]
23832383
ld [wCurPartySpecies], a
23842384
ld [wCurSpecies], a
@@ -2994,7 +2994,7 @@ SelectEnemyMove:
29942994
pop hl
29952995
jr z, .chooseRandomMove ; move disabled, try again
29962996
and a
2997-
jr z, .chooseRandomMove ; move non-existant, try again
2997+
jr z, .chooseRandomMove ; move non-existent, try again
29982998
.done
29992999
ld [wEnemySelectedMove], a
30003000
ret

engine/battle/effects.asm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@ FreezeBurnParalyzeEffect:
295295
ld hl, BurnedText
296296
jp PrintText
297297
.freeze2
298-
; hyper beam bits aren't reseted for opponent's side
298+
; hyper beam bits aren't reset for opponent's side
299299
ld a, 1 << FRZ
300300
ld [wBattleMonStatus], a
301301
ld hl, FrozenText

engine/events/hidden_objects/vermilion_gym_trash.asm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ VermilionGymTrashSuccessText2::
142142
text_end
143143

144144
; unused
145-
VermilionGymTrashSuccesPlaySfx:
145+
VermilionGymTrashSuccessPlaySfx:
146146
text_asm
147147
call WaitForSoundToFinish
148148
ld a, SFX_SWITCH

engine/gfx/palettes.asm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ SetPal_TrainerCard:
213213
srl a
214214
push af
215215
jr c, .haveBadge
216-
; The player doens't have the badge, so zero the badge's blk data.
216+
; The player doesn't have the badge, so zero the badge's blk data.
217217
push bc
218218
ld a, [de]
219219
ld c, a

engine/menus/naming_screen.asm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -217,11 +217,11 @@ DisplayNamingScreen:
217217
.didNotPressED
218218
ld a, [wCurrentMenuItem]
219219
cp $6 ; case switch row
220-
jr nz, .didNotPressCaseSwtich
220+
jr nz, .didNotPressCaseSwitch
221221
ld a, [wTopMenuItemX]
222222
cp $1 ; case switch column
223223
jr z, .pressedA_changedCase
224-
.didNotPressCaseSwtich
224+
.didNotPressCaseSwitch
225225
ld hl, wMenuCursorLocation
226226
ld a, [hli]
227227
ld h, [hl]

home/text.asm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,7 @@ _ContTextNoPause::
278278

279279
; move both rows of text in the normal text box up one row
280280
; always called twice in a row
281-
; first time, copy the two rows of text to the "in between" rows that are usually emtpy
281+
; first time, copy the two rows of text to the "in between" rows that are usually empty
282282
; second time, copy the bottom row of text into the top row of text
283283
ScrollTextUpOneLine::
284284
hlcoord 0, 14 ; top row of text

home/uncompress.asm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -466,7 +466,7 @@ DecodeNybble1TableFlipped::
466466
dn $e, $6
467467
dn $2, $a
468468

469-
; combines the two loaded chunks with xor (the chunk loaded second is the destination). The source chunk is differeintial decoded beforehand.
469+
; combines the two loaded chunks with xor (the chunk loaded second is the destination). The source chunk is differential decoded beforehand.
470470
XorSpriteChunks::
471471
xor a
472472
ld [wSpriteCurPosX], a
@@ -568,7 +568,7 @@ ResetSpriteBufferPointers::
568568
NybbleReverseTable::
569569
db $0, $8, $4, $c, $2, $a, $6, $e, $1, $9, $5, $d, $3, $b, $7, $f
570570

571-
; combines the two loaded chunks with xor (the chunk loaded second is the destination). Both chunks are differeintial decoded beforehand.
571+
; combines the two loaded chunks with xor (the chunk loaded second is the destination). Both chunks are differential decoded beforehand.
572572
UnpackSpriteMode2::
573573
call ResetSpriteBufferPointers
574574
ld a, [wSpriteFlipped]

0 commit comments

Comments
 (0)