shithub: pokecrystal

Download patch

ref: 73c7ea2b4379ac935bda3d1c79f4b1a89496b2e8
parent: 6be4cd4da98093bf1b9362c946e693c89e4713ad
author: pikalaxalt <PikalaxALT@gmail.com>
date: Sun Apr 10 11:11:37 EDT 2016

Local labels starting with underscores have colons depending on whether the first alphanumeric character is capitalized or not

--- a/engine/decorations.asm
+++ b/engine/decorations.asm
@@ -712,7 +712,7 @@
 	call ._getdeconame
 	jr .copy
 
-._getdeconame: ; 26ccf
+._getdeconame ; 26ccf
 	push bc
 	ld hl, DecorationNames
 	call GetNthString
--- a/engine/map_objects.asm
+++ b/engine/map_objects.asm
@@ -978,7 +978,7 @@
 	ld [hl], STEP_TYPE_TRACKING_OBJECT
 	ret
 
-._MovementShadow_Grass_Emote_BoulderDust
+._MovementShadow_Grass_Emote_BoulderDust:
 	ld hl, OBJECT_RANGE
 	add hl, bc
 	ld a, [hl]
@@ -1014,7 +1014,7 @@
 	ld [hl], STEP_TYPE_15
 	ret
 
-._MovementScreenShake
+._MovementScreenShake:
 	ld d, a
 	and %00111111
 	ld e, a
--- a/maps/FastShip1F.asm
+++ b/maps/FastShip1F.asm
@@ -77,7 +77,7 @@
 	warp VERMILION_PORT, $7, $11
 	end
 
-._Olivine
+._Olivine:
 	writetext UnknownText_0x7548d
 	waitbutton
 	closetext
--- a/misc/gfx_41.asm
+++ b/misc/gfx_41.asm
@@ -228,7 +228,7 @@
 	ret
 ; 10419c
 
-._hl_: ; 10419c
+._hl_ ; 10419c
 	jp [hl]
 ; 10419d
 
--