shithub: pokecrystal

Download patch

ref: da22ada91ca6212b65cf4d8037d03ae1ebd97323
parent: 7a13251d0333d4914034ac8b370ddad2a6190d1d
parent: 546c17ad37b1e0cfd91ea630e0bbc044c28b3e6a
author: yenatch <yenatch@gmail.com>
date: Fri Oct 25 12:23:16 EDT 2013

Merge commit '546c17ad' into merge-mrwint

Conflicts:
	engine/scripting.asm
	main.asm

--- a/engine/scripting.asm
+++ b/engine/scripting.asm
@@ -578,7 +578,7 @@
 	jr z, .play
 	ld de, SFX_ITEM
 .play
-	call StartSFX
+	call PlaySFX
 	call WaitSFX
 	ret
 ; 0x96ffe
@@ -926,7 +926,7 @@
 	ld e, a
 	call GetScriptByte
 	ld d, a
-	call StartSFX
+	call PlaySFX
 	ret
 ; 0x971c3
 
@@ -941,7 +941,7 @@
 ; script command 0x87
 
 	callba Function14a07
-	call StartSFX
+	call PlaySFX
 	ret
 ; 0x971d1
 
--- a/engine/title.asm
+++ b/engine/title.asm
@@ -225,7 +225,7 @@
 ; Play starting sound effect
 	call SFXChannelsOff
 	ld de, SFX_TITLE_SCREEN_ENTRANCE
-	call StartSFX
+	call PlaySFX
 	
 	ret
 ; 10eea7
--- a/home/joypad.asm
+++ b/home/joypad.asm
@@ -394,7 +394,7 @@
 	call Functionac6
 	push de
 	ld de, SFX_READ_TEXT_2
-	call StartSFX
+	call PlaySFX
 	pop de
 	ret
 
--- a/home/menu.asm
+++ b/home/menu.asm
@@ -532,7 +532,7 @@
 PlayClickSFX: ; 2009 
 	push de
 	ld de, SFX_READ_TEXT_2
-	call StartSFX
+	call PlaySFX
 	pop de
 	ret
 ; 0x2012
--- a/home/text.asm
+++ b/home/text.asm
@@ -1087,7 +1087,7 @@
 	ld e, [hl]
 	inc hl
 	ld d, [hl]
-	call StartSFX
+	call PlaySFX
 	call WaitSFX
 	pop de
 
--- a/main.asm
+++ b/main.asm
@@ -3173,7 +3173,7 @@
 ; 3c23
 
 
-StartSFX: ; 3c23
+PlaySFX: ; 3c23
 ; Play sound effect de.
 ; Sound effects are ordered by priority (lowest to highest)
 
@@ -3215,7 +3215,7 @@
 
 WaitPlaySFX: ; 3c4e
 	call WaitSFX
-	call StartSFX
+	call PlaySFX
 	ret
 ; 3c55
 
@@ -5228,7 +5228,7 @@
 	call Function6ec1
 	jr c, .asm_48eb
 	ld de, SFX_STRENGTH
-	call StartSFX
+	call PlaySFX
 	call Function5538
 	call Function463f
 	ld hl, $0009
@@ -8629,7 +8629,7 @@
 	ld [MusicFadeIDHi], a
 
 	ld de, SFX_ESCAPE_ROPE
-	call StartSFX
+	call PlaySFX
 	pop af
 	rst Bankswitch
 
@@ -9472,7 +9472,7 @@
 ; 6689
 	push de
 	ld de, SFX_SWITCH_POKEMON
-	call StartSFX
+	call PlaySFX
 	pop de
 	ld hl, UnknownText_0x6695
 	ret
@@ -13245,7 +13245,7 @@
 Functionc8f8: ; c8f8
 	call WaitSFX
 	ld de, SFX_FLASH
-	call StartSFX
+	call PlaySFX
 	call WaitSFX
 	ld hl, UnknownText_0xc908
 	ret
@@ -16610,7 +16610,7 @@
 	ld a, [BreedMon1Species]
 	ld [CurPartySpecies], a
 	ld de, $0022
-	call StartSFX
+	call PlaySFX
 	call WaitSFX
 	call Functione698
 	ld a, b
@@ -16626,7 +16626,7 @@
 	ld a, [BreedMon2Species]
 	ld [CurPartySpecies], a
 	ld de, $0022
-	call StartSFX
+	call PlaySFX
 	call WaitSFX
 	call Functione6b3
 	ld a, b
@@ -19273,7 +19273,7 @@
 	ld [$cf63], a
 	push de
 	ld de, SFX_UNKNOWN_62
-	call StartSFX
+	call PlaySFX
 	pop de
 	scf
 	ret
@@ -19285,7 +19285,7 @@
 	ld [$cf63], a
 	push de
 	ld de, SFX_UNKNOWN_62
-	call StartSFX
+	call PlaySFX
 	pop de
 	scf
 	ret
@@ -19486,7 +19486,7 @@
 	ld [$cf64], a
 	push de
 	ld de, $62
-	call StartSFX
+	call PlaySFX
 	pop de
 	scf
 	ret
@@ -19496,7 +19496,7 @@
 	ld [$cf64], a
 	push de
 	ld de, $62
-	call StartSFX
+	call PlaySFX
 	pop de
 	scf
 	ret
@@ -21698,7 +21698,7 @@
 	call Function124a3
 	push de
 	ld de, $0012
-	call StartSFX
+	call PlaySFX
 	pop de
 	ld c, $1e
 	call DelayFrames
@@ -21715,11 +21715,11 @@
 
 Function123c8: ; 123c8
 	ld de, $00aa
-	call StartSFX
+	call PlaySFX
 	call Function12459
 	call WaitSFX
 	ld de, $000d
-	call StartSFX
+	call PlaySFX
 	ret
 ; 123db
 
@@ -21942,7 +21942,7 @@
 	call Function1fbf
 
 	ld de, SFX_MENU
-	call StartSFX
+	call PlaySFX
 
 	callba Function6454
 
@@ -23568,10 +23568,10 @@
 
 .asm_13113
 	ld de, $0020
-	call StartSFX
+	call PlaySFX
 	call WaitSFX
 	ld de, $0020
-	call StartSFX
+	call PlaySFX
 	call WaitSFX
 	ld hl, $c4c9
 	ld bc, $0812
@@ -27868,7 +27868,7 @@
 	and a
 	ret nz
 	ld de, $000f
-	call StartSFX
+	call PlaySFX
 	ld hl, $5663
 	call Function15a20
 	scf
@@ -27909,7 +27909,7 @@
 	push de
 	call WaitSFX
 	pop de
-	call StartSFX
+	call PlaySFX
 	ret
 ; 156d9
 
@@ -29099,7 +29099,7 @@
 Function15fc3: ; 15fc3
 	call WaitSFX
 	ld de, SFX_TRANSACTION
-	call StartSFX
+	call PlaySFX
 	ret
 ; 15fcd
 
@@ -29646,7 +29646,7 @@
 	ld hl, $6998
 	call PrintText
 	ld de, $0096
-	call StartSFX
+	call PlaySFX
 	ld c, $78
 	call DelayFrames
 	ld hl, $699d
@@ -30963,7 +30963,7 @@
 	jr .asm_172ee
 .asm_17327
 	ld de, $a6
-	call StartSFX
+	call PlaySFX
 	xor a
 	ld [hSCX], a ; $ff00+$cf
 	ld [$c3c0], a
@@ -31014,7 +31014,7 @@
 	add hl, bc
 	ld [hl], $0
 	ld de, $9e
-	jp StartSFX
+	jp PlaySFX
 ; 17393 (5:7393)
 
 INCBIN "baserom.gbc",$17393,$173b3 - $17393
@@ -31054,7 +31054,7 @@
 	jr .asm_173bc
 .asm_173e5
 	ld de, $a6
-	call StartSFX
+	call PlaySFX
 	call Function1727f
 	ret
 ; 173ef (5:73ef)
@@ -33500,7 +33500,7 @@
 	set 6, [hl]
 	call Function1bc9
 	ld de, SFX_READ_TEXT_2
-	call StartSFX
+	call PlaySFX
 	ld a, [hJoyPressed]
 	bit 0, a ; A
 	jr nz, .asm_24d84
@@ -33723,7 +33723,7 @@
 	set 6, [hl]
 	call Function1bc9
 	ld de, SFX_READ_TEXT_2
-	call StartSFX
+	call PlaySFX
 	ld a, [hJoyPressed]
 	bit 1, a
 	jr z, .asm_24ed2
@@ -34634,7 +34634,7 @@
 	ld hl, OakPCText2
 	call PrintText
 	call Rate
-	call StartSFX ; sfx loaded by previous Rate function call
+	call PlaySFX ; sfx loaded by previous Rate function call
 	call Functiona36
 	call WaitSFX
 	ret
@@ -34646,7 +34646,7 @@
 	ld de, MUSIC_NONE
 	call StartMusic
 	pop de
-	call StartSFX
+	call PlaySFX
 	call Functiona36
 	call WaitSFX
 	ret
@@ -40115,7 +40115,7 @@
 	call Function2c5f9
 	call WaitSFX
 	ld de, $0097
-	call StartSFX
+	call PlaySFX
 	call WaitSFX
 	ld hl, $45db
 	call PrintText
@@ -40466,7 +40466,7 @@
 	push bc
 	push af
 	ld de, SFX_WRONG
-	call StartSFX
+	call PlaySFX
 	call WaitSFX
 	pop af
 	pop bc
@@ -40488,7 +40488,7 @@
 	jr nz, .asm_2c88b
 	push de
 	ld de, $19
-	call StartSFX
+	call PlaySFX
 	pop de
 	ld hl, $48ce
 	call PrintText
@@ -40821,7 +40821,7 @@
 Function2cad6: ; 2cad6 (b:4ad6)
 	push de
 	ld de, $8
-	call StartSFX
+	call PlaySFX
 	pop de
 	ret
 ; 2cadf (b:4adf)
@@ -41729,7 +41729,7 @@
 Function3839a: ; 3839a
 	push de
 	ld de, SFX_FULL_HEAL
-	call StartSFX
+	call PlaySFX
 	pop de
 	ret
 ; 383a3
@@ -42545,7 +42545,7 @@
 	jr c, .asm_3c126
 
 	ld de, SFX_RUN
-	call StartSFX
+	call PlaySFX
 
 .asm_3c126
 	call SetPlayerTurn
@@ -44714,10 +44714,10 @@
 Function3cf14: ; 3cf14
 	call WaitSFX
 	ld de, SFX_KINESIS
-	call StartSFX
+	call PlaySFX
 	call Function3d432
 	ld de, SFX_UNKNOWN_2A
-	call StartSFX
+	call PlaySFX
 	hlcoord 1, 0
 	ld bc, $040a
 	call ClearBox
@@ -45380,7 +45380,7 @@
 	call Function3d2e0
 	ret c
 	ld de, SFX_WRONG
-	call StartSFX
+	call PlaySFX
 	call WaitSFX
 	jr .asm_3d362
 ; 3d375
@@ -46728,10 +46728,10 @@
 	or [hl]
 	jr nz, .asm_3dce4
 	ld de, SFX_KINESIS
-	call StartSFX
+	call PlaySFX
 	call WaitSFX
 	ld de, SFX_UNKNOWN_2A
-	call StartSFX
+	call PlaySFX
 	call WaitSFX
 	call Function3d432
 	ld hl, BattleText_0x809a8
@@ -49952,7 +49952,7 @@
 	cp b
 	jr z, .asm_3f057
 	ld de, SFX_HIT_END_OF_EXP_BAR
-	call StartSFX
+	call PlaySFX
 	call WaitSFX
 	ld hl, BattleText_0x80c9c
 	call StdBattleTextBox
@@ -50200,7 +50200,7 @@
 	call CopyBytes
 	call Function3dfe
 	ld de, SFX_HIT_END_OF_EXP_BAR
-	call StartSFX
+	call PlaySFX
 	callba Function8e79d
 	call WaitSFX
 	ld hl, BattleText_0x80c9c
@@ -50235,7 +50235,7 @@
 	push bc
 	call WaitSFX
 	ld de, SFX_EXP_BAR
-	call StartSFX
+	call PlaySFX
 	ld c, 10
 	call DelayFrames
 	pop bc
@@ -51795,7 +51795,7 @@
 	jr z, .asm_3fcaa
 
 	ld de, SFX_SHINE
-	call StartSFX
+	call PlaySFX
 	call WaitSFX
 
 	ld c, 20
@@ -51920,7 +51920,7 @@
 
 .asm_4003b
 	ld de, SFX_READ_TEXT_2
-	call StartSFX
+	call PlaySFX
 	call WaitSFX
 	call ClearSprites
 	ld a, [$c7d4]
@@ -53395,7 +53395,7 @@
 	ld c, $40
 	call DelayFrames
 	ld de, $15
-	call StartSFX
+	call PlaySFX
 	ld c, $40
 	call DelayFrames
 	ret
@@ -54237,7 +54237,7 @@
 	ld de, MUSIC_NONE
 	call StartMusic
 	ld de, SFX_CAUGHT_MON
-	call StartSFX
+	call PlaySFX
 	call WaitSFX
 	ld c, $28
 	call DelayFrames
@@ -57443,7 +57443,7 @@
 	jr nz, .asm_492e5
 	push de
 	ld de, SFX_WRONG
-	call StartSFX
+	call PlaySFX
 	pop de
 	ld a, $b
 	ld hl, $48ce
@@ -59660,7 +59660,7 @@
 
 .asm_4a9b0
 	ld de, $0019
-	call StartSFX
+	call PlaySFX
 	ld hl, $69be
 	call PrintText
 	jr .asm_4a974
@@ -59923,7 +59923,7 @@
 	ld a, [hl]
 	ld [CurPartySpecies], a
 	ld de, $0008
-	call StartSFX
+	call PlaySFX
 	call WaitSFX
 	ld a, $1
 	and a
@@ -59934,7 +59934,7 @@
 	ld [$d0d8], a
 .asm_4ab73
 	ld de, $0008
-	call StartSFX
+	call PlaySFX
 	call WaitSFX
 	scf
 	ret
@@ -59946,7 +59946,7 @@
 	cp $2
 	jr z, .asm_4ab73
 	ld de, $0008
-	call StartSFX
+	call PlaySFX
 	call WaitSFX
 	xor a
 	ld [$d018], a
@@ -60148,7 +60148,7 @@
 	set 6, [hl]
 	call Function1bc9
 	ld de, $0008
-	call StartSFX
+	call PlaySFX
 	ld a, [hJoyPressed]
 	bit 0, a
 	jr nz, .asm_4acf4
@@ -62960,7 +62960,7 @@
 	cp 6
 	ret nc
 	ld de, SFX_2_BOOPS
-	call StartSFX
+	call PlaySFX
 	ret
 ; 0x4e3c0
 
@@ -63442,7 +63442,7 @@
 	and a
 	ret nz
 	ld de, SFX_EVOLVED
-	call StartSFX
+	call PlaySFX
 	ld hl, $cf63
 	ld a, [hl]
 	push af
@@ -64972,7 +64972,7 @@
 	ld [CurPartySpecies], a
 
 	ld de, SFX_READ_TEXT_2
-	call StartSFX
+	call PlaySFX
 	call WaitSFX
 	and a
 	ret
@@ -64979,7 +64979,7 @@
 
 .exitmenu
 	ld de, SFX_READ_TEXT_2
-	call StartSFX
+	call PlaySFX
 	call WaitSFX
 	scf
 	ret
@@ -65171,7 +65171,7 @@
 
 Function50658: ; 50658
 	ld de, SFX_POISON
-	call StartSFX
+	call PlaySFX
 	ld b, $2
 	ld a, $2e
 	call Predef
@@ -67809,7 +67809,7 @@
 	jr z, .DontJump
 
 	ld de, SFX_JUMP_OVER_LEDGE
-	call StartSFX
+	call PlaySFX
 	ld a, STEP_LEDGE
 	call DoStep
 	ld a, 7
@@ -68212,7 +68212,7 @@
 	call CheckSFX
 	ret c
 	ld de, SFX_BUMP
-	call StartSFX
+	call PlaySFX
 	ret
 ; 803f9
 
@@ -72706,7 +72706,7 @@
 Function89a8a: ; 89a8a
 	push af
 	ld de, $0062
-	call StartSFX
+	call PlaySFX
 	pop af
 	ret
 ; 89a93
@@ -73767,7 +73767,7 @@
 .asm_8a14c
 	call WaitSFX
 	ld de, $ce
-	call StartSFX
+	call PlaySFX
 	ld c, $10
 	call DelayFrames
 .asm_8a15a
@@ -75513,7 +75513,7 @@
 
 .asm_8b051
 	ld de, $0022
-	call StartSFX
+	call PlaySFX
 	ld hl, $707c
 
 .asm_8b05a
@@ -77956,7 +77956,7 @@
 Function8c7d4: ; 8c7d4
 	call WaitSFX
 	ld de, $0053
-	call StartSFX
+	call PlaySFX
 	call WaitSFX
 	ret
 ; 8c7e1
@@ -77970,7 +77970,7 @@
 	call Function8c96d
 	call WaitSFX
 	ld de, $001e
-	call StartSFX
+	call PlaySFX
 .asm_8c952
 	ld a, [$cf63]
 	bit 7, a
@@ -78257,7 +78257,7 @@
 	and $7
 	ret nz
 	ld de, $18
-	call StartSFX
+	call PlaySFX
 	ret
 .asm_8cbe0
 	ld hl, $cf63
@@ -79404,7 +79404,7 @@
 	ld a, $4
 	ld [$cf64], a
 	ld de, $1e
-	call StartSFX
+	call PlaySFX
 	ret
 .asm_8d461
 	inc [hl]
@@ -79452,7 +79452,7 @@
 	and $3
 	ret nz
 	ld de, $3
-	call StartSFX
+	call PlaySFX
 	ret
 .asm_8d53f
 	call Function8d036
@@ -80816,7 +80816,7 @@
 ; no known jump sources
 Function902e3: ; 902e3 (24:42e3)
 	ld de, $6c
-	call StartSFX
+	call PlaySFX
 	jr asm_902f1
 
 
@@ -80846,7 +80846,7 @@
 	ld hl, UnknownText_0x9032a
 	call PrintText
 	ld de, SFX_HANG_UP
-	call StartSFX
+	call PlaySFX
 	ret
 ; 9032a
 
@@ -80876,7 +80876,7 @@
 Function9033f: ; 9033f
 	call WaitSFX
 	ld de, SFX_CALL
-	call StartSFX
+	call PlaySFX
 	call Function90375
 	call Function1ad2
 	callba Function4d188
@@ -81614,7 +81614,7 @@
 	jr .asm_90ba9
 .asm_90bc4
 	ld de, $8
-	call StartSFX
+	call PlaySFX
 	call WaitSFX
 	pop af
 	ld [VramState], a ; $d0ed
@@ -82459,12 +82459,12 @@
 	xor a
 	ld [$FF00+$aa], a
 	ld de, $6a
-	call StartSFX
+	call PlaySFX
 	ld hl, $524c
 	call PrintText
 	call WaitSFX
 	ld de, $6a
-	call StartSFX
+	call PlaySFX
 	ld hl, $524c
 	call PrintText
 	call WaitSFX
@@ -82769,7 +82769,7 @@
 ; known jump sources: 90f71 (24:4f71), 91025 (24:5025), 9114c (24:514c), 911ac (24:51ac)
 Function91480: ; 91480 (24:5480)
 	ld de, $8
-	call StartSFX
+	call PlaySFX
 	ld a, c
 	ld [$cf63], a
 	ld a, b
@@ -84317,7 +84317,7 @@
 	jr nc, .asm_926d2
 	call WaitSFX
 	ld de, $9d
-	call StartSFX
+	call PlaySFX
 	call WaitSFX
 	call WhiteBGMap
 	ld a, BANK(Function105fd0)
@@ -84701,7 +84701,7 @@
 	and $7
 	ret z
 	ld de, $67
-	call StartSFX
+	call PlaySFX
 	ret
 .asm_929d5
 	call Function92879
@@ -85165,7 +85165,7 @@
 .asm_930b6
 	call WaitSFX
 	ld de, $68
-	call StartSFX
+	call PlaySFX
 	ld hl, $70cc
 	call PrintText
 	and a
@@ -85414,7 +85414,7 @@
 	and $f
 	ret nz
 	ld de, $16
-	call StartSFX
+	call PlaySFX
 	ret
 .asm_932d6
 	ld hl, $b
@@ -85470,7 +85470,7 @@
 	push de
 	ld e, a
 	ld d, $0
-	call StartSFX
+	call PlaySFX
 	pop de
 	ret
 ; 93327 (24:7327)
@@ -86096,7 +86096,7 @@
 PlayTalkObject: ; 969ac
 	push de
 	ld de, SFX_READ_TEXT_2
-	call StartSFX
+	call PlaySFX
 	pop de
 	ret
 ; 969b5
@@ -94097,7 +94097,7 @@
 	ld de, $00ab
 
 .asm_cc8a0
-	call StartSFX
+	call PlaySFX
 	ret
 ; cc8a4
 
@@ -100559,7 +100559,7 @@
 .asm_e017c
 	call WaitSFX
 	ld de, $9d
-	call StartSFX
+	call PlaySFX
 	call WaitSFX
 	call WhiteBGMap
 	ld hl, Options ; $cfcc
@@ -103258,7 +103258,7 @@
 
 .asm_e4234
 	ld de, SFX_TRANSACTION
-	call StartSFX
+	call PlaySFX
 	call WaitSFX
 	pop af
 	ld [$ffaa], a
@@ -103943,7 +103943,7 @@
 	call CopyBytes
 	call Functione4687
 	ld de, SFX_GAME_FREAK_PRESENTS
-	call StartSFX
+	call PlaySFX
 	ret
 ; e46af
 
@@ -104057,7 +104057,7 @@
 	sub $30
 	ld [hl], a
 	ld de, $c7
-	call StartSFX
+	call PlaySFX
 	ret
 .asm_e4747
 	ld hl, $b
@@ -104067,7 +104067,7 @@
 	add hl, bc
 	ld [hl], $0
 	ld de, $c1
-	call StartSFX
+	call PlaySFX
 	ret
 
 ; no known jump sources
@@ -104087,7 +104087,7 @@
 	add hl, bc
 	ld [hl], $0
 	ld de, $c2
-	call StartSFX
+	call PlaySFX
 	ret
 
 ; no known jump sources
@@ -104308,7 +104308,7 @@
 	ld de, $5858
 	call Functione51dc
 	ld de, $be
-	call StartSFX
+	call PlaySFX
 	pop af
 .asm_e49f1
 	ld [$cf65], a
@@ -104452,7 +104452,7 @@
 	ld de, $3878
 	call Functione51dc
 	ld de, $bf
-	call StartSFX
+	call PlaySFX
 	pop af
 .asm_e4b1c
 	ld [$cf65], a
@@ -104464,7 +104464,7 @@
 	ld de, $7030
 	call Functione51dc
 	ld de, $be
-	call StartSFX
+	call PlaySFX
 	pop af
 .asm_e4b32
 	ld [$cf65], a
@@ -104548,7 +104548,7 @@
 	ret
 .asm_e4be2
 	ld de, $c6
-	call StartSFX
+	call PlaySFX
 .asm_e4be8
 	ld a, [$c3c0]
 	and a
@@ -104558,7 +104558,7 @@
 	ret
 .asm_e4bf4
 	ld de, $c5
-	call StartSFX
+	call PlaySFX
 	callba Function8d03d
 	call Functione4956
 	ret
@@ -104615,7 +104615,7 @@
 	ld a, $27
 	call Function3b2a
 	ld de, $c4
-	call StartSFX
+	call PlaySFX
 	ret
 .asm_e4c73
 	ld de, $b030
@@ -104622,7 +104622,7 @@
 	ld a, $28
 	call Function3b2a
 	ld de, $c4
-	call StartSFX
+	call PlaySFX
 	ret
 .asm_e4c82
 	call Functione4956
@@ -104735,7 +104735,7 @@
 	push de
 	call SFXChannelsOff
 	pop de
-	call StartSFX
+	call PlaySFX
 	ret
 ; e4d54 (39:4d54)
 
@@ -104818,7 +104818,7 @@
 	ret
 .asm_e4e14
 	ld de, $c8
-	call StartSFX
+	call PlaySFX
 .asm_e4e1a
 	ld a, $1
 	ld [$cf65], a
@@ -105239,7 +105239,7 @@
 	cp $8
 	ret nz
 	ld de, $cb
-	call StartSFX
+	call PlaySFX
 	ret
 .asm_e5168
 	call WhiteBGMap
@@ -109655,7 +109655,7 @@
 	ld de, StringBuffer2
 	call PrintNum
 	ld de, SFX_TWO_PC_BEEPS
-	call StartSFX
+	call PlaySFX
 	callba Function104061
 	ld c, $3c
 	call DelayFrames
@@ -109666,7 +109666,7 @@
 	ld hl, $c580
 	call PlaceString
 	ld de, SFX_4_NOTE_DITTY
-	call StartSFX
+	call PlaySFX
 	callba Function104061
 	ld c, $78
 	call DelayFrames
@@ -110182,7 +110182,7 @@
 	ld a, [hl]
 	ld [CurPartySpecies], a
 	ld de, SFX_READ_TEXT_2
-	call StartSFX
+	call PlaySFX
 	call WaitSFX
 	and a
 	ret
@@ -110189,7 +110189,7 @@
 
 .asm_100d17
 	ld de, SFX_READ_TEXT_2
-	call StartSFX
+	call PlaySFX
 	call WaitSFX
 	scf
 	ret
@@ -110223,7 +110223,7 @@
 .asm_100d56
 	push af
 	ld de, SFX_READ_TEXT_2
-	call StartSFX
+	call PlaySFX
 	pop af
 	bit 1, a
 	jr z, .asm_100d65
@@ -110386,7 +110386,7 @@
 	call Function100db0
 	ret nc
 	ld de, SFX_ELEVATOR_END
-	call StartSFX
+	call PlaySFX
 	ret
 ; 100e72
 
@@ -110729,7 +110729,7 @@
 	ld hl, $61d1
 	call Function1d4f
 	ld de, $0090
-	call StartSFX
+	call PlaySFX
 	call Functiona36
 	call Function1c07
 	call Function10219f
@@ -124594,13 +124594,13 @@
 Function17aa88: ; 17aa88 (5e:6a88)
 	jr c, asm_17aa91
 	ld de, $20
-	call StartSFX
+	call PlaySFX
 	ret
 
 ; known jump sources: 17aa88 (5e:6a88)
 asm_17aa91: ; 17aa91 (5e:6a91)
 	ld de, $19
-	call StartSFX
+	call PlaySFX
 	ret
 
 ; known jump sources: 17a8c1 (5e:68c1), 17a8cf (5e:68cf), 17a907 (5e:6907), 17a911 (5e:6911)
--