diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-01-31 21:09:12 -0500 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-02-04 11:07:16 -0500 |
commit | d482dc28f4c0f1519fb4a006d9f0cfb58c0c02ff (patch) | |
tree | c4e5fec0f3393ae75cb5fce96bd6ea73c7839fda /home/mon_data.asm | |
parent | b1c85486283274fbd1dd9072116ab1bb034e7756 (diff) |
Identify four padding bytes in base data as beta front/back pic pointers
Diffstat (limited to 'home/mon_data.asm')
-rw-r--r-- | home/mon_data.asm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/home/mon_data.asm b/home/mon_data.asm index dec80383c..f365f019c 100644 --- a/home/mon_data.asm +++ b/home/mon_data.asm @@ -31,7 +31,6 @@ GetBaseData:: jr .end .egg -; ???? ld de, UnknownEggPic ; Sprite dimensions @@ -39,8 +38,9 @@ GetBaseData:: ld hl, wBasePicSize ld [hl], b -; ???? - ld hl, wBasePadding +; Beta front and back sprites +; (see pokegold-spaceworld's data/pokemon/base_stats/*) + ld hl, wBaseUnusedFrontpic ld [hl], e inc hl ld [hl], d @@ -48,7 +48,7 @@ GetBaseData:: ld [hl], e inc hl ld [hl], d - jr .end + jr .end ; useless .end ; Replace Pokedex # with species |