Skip to content

Commit

Permalink
Remove trailing whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
Rangi42 committed Nov 5, 2020
1 parent 2db54ec commit 2a4b8b5
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions data/maps/special_warps.asm
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,11 @@ FirstMapSpec:
special_warp_spec REDS_HOUSE_2F, 3, 6, REDS_HOUSE_2
TradeCenterSpec1:
special_warp_spec TRADE_CENTER, 3, 4, CLUB
TradeCenterSpec2:
TradeCenterSpec2:
special_warp_spec TRADE_CENTER, 6, 4, CLUB
ColosseumSpec1:
ColosseumSpec1:
special_warp_spec COLOSSEUM, 3, 4, CLUB
ColosseumSpec2:
ColosseumSpec2:
special_warp_spec COLOSSEUM, 6, 4, CLUB


Expand Down
2 changes: 1 addition & 1 deletion data/trainers/special_moves.asm
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
; unique moves for gym leaders
; this is not automatic! you have to write the index you want to [wLoneAttackNo]
; first. e.g., erika's script writes 4 to [wLoneAttackNo] to get mega drain,
; first. e.g., erika's script writes 4 to [wLoneAttackNo] to get mega drain,
; the fourth entry in the list.
LoneMoves:
; pokemon index, move to give nth pokemon
Expand Down
2 changes: 1 addition & 1 deletion engine/battle/core.asm
Original file line number Diff line number Diff line change
Expand Up @@ -4485,7 +4485,7 @@ CalculateDamage:
ld b, 4
call Divide

; Update wCurDamage.
; Update wCurDamage.
; Capped at MAX_NEUTRAL_DAMAGE - MIN_NEUTRAL_DAMAGE: 999 - 2 = 997.
ld hl, wDamage
ld b, [hl]
Expand Down
4 changes: 2 additions & 2 deletions engine/math/bcd.asm
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ DivideBCD::
ldh [hDivideBCDBuffer+1], a
ldh [hDivideBCDBuffer+2], a
ld d, $1
.mulBy10Loop
.mulBy10Loop
; multiply the divisor by 10 until the leading digit is nonzero
; to set up the standard long division algorithm
ldh a, [hDivideBCDDivisor]
Expand Down Expand Up @@ -108,7 +108,7 @@ DivideBCD::
ldh a, [hDivideBCDBuffer+2]
ldh [hDivideBCDQuotient+2], a
pop de
ld a, $6
ld a, $6
sub d
and a
ret z
Expand Down
2 changes: 1 addition & 1 deletion engine/pokemon/add_mon.asm
Original file line number Diff line number Diff line change
Expand Up @@ -430,7 +430,7 @@ _MoveMon::
cp PARTY_TO_DAYCARE
ld de, wDayCareMonOT
jr z, .findOTsrc
dec a
dec a
ld hl, wPartyMonOT
ld a, [wPartyCount]
jr nz, .addOToffset
Expand Down

0 comments on commit 2a4b8b5

Please sign in to comment.