ref: f96aab40141ddeeefd582f0ad733f10f3553bb98
parent: e44640b0088dad5856d7a6f60ad930779931b251
author: Remy Oukaour <remy.oukaour@gmail.com>
date: Fri Dec 15 16:32:43 EST 2017
Correct some documentation comments
--- a/constants/pokemon_data_constants.asm
+++ b/constants/pokemon_data_constants.asm
@@ -35,7 +35,7 @@
GENDERLESS EQU 255
; BaseGrowthRate values
-; GrowthRates indexes (see main.asm)
+; GrowthRates indexes (see data/growth_rates.asm)
const_def
const MEDIUM_FAST
const SLIGHTLY_FAST
--- a/constants/std_constants.asm
+++ b/constants/std_constants.asm
@@ -1,5 +1,5 @@
; StdScripts indexes (see engine/std_scripts.asm)
-; also used in CheckFacingTileForStd (see main.asm)
+; also used in TileCollisionStdScripts (see data/collision_stdscripts.asm)
enum_start
enum pokecenternurse
enum difficultbookshelf
--- a/home.asm
+++ b/home.asm
@@ -1,5 +1,6 @@
INCLUDE "includes.asm"
+
SECTION "NULL", ROM0
NULL::
@@ -6,11 +7,13 @@
INCLUDE "rst.asm"
INCLUDE "interrupts.asm"
+
SECTION "Header", ROM0
Start::
nop
jp _Start
+
SECTION "Home", ROM0