diff options
author | YamaArashi <shadow962@live.com> | 2016-08-31 17:54:08 -0700 |
---|---|---|
committer | YamaArashi <shadow962@live.com> | 2016-08-31 17:54:08 -0700 |
commit | 1224f761c0ea2b1089b295ef9ada1e10dc235a72 (patch) | |
tree | b022bf6a3b5ef509f46075d120e6c3d0c9a4de0b | |
parent | 2c2f4255cb96c3fea95e5fac7655c00cabff9cfb (diff) |
fix macro param name
-rw-r--r-- | asm/macros/pokemon_data.s | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/asm/macros/pokemon_data.s b/asm/macros/pokemon_data.s index f18462d34..b0a5f22e3 100644 --- a/asm/macros/pokemon_data.s +++ b/asm/macros/pokemon_data.s @@ -1,6 +1,6 @@ - .macro pokedex_entry pokemon_name, height, width, pokemon_scale, pokemon_offset, trainer_scale, trainer_offset + .macro pokedex_entry pokemon_name, height, weight, pokemon_scale, pokemon_offset, trainer_scale, trainer_offset .2byte \height @ in decimeters - .2byte \width @ in hectograms + .2byte \weight @ in hectograms .4byte DexDescription_\pokemon_name\()_1 .4byte DexDescription_\pokemon_name\()_2 .2byte 0 @ unused |