diff options
| author | Sawakita <sawakitanoodles@gmail.com> | 2012-01-15 15:40:13 +0100 |
|---|---|---|
| committer | Sawakita <sawakitanoodles@gmail.com> | 2012-01-15 15:40:13 +0100 |
| commit | 916b31351797bece6510db6128fb7fd24b6ccc3f (patch) | |
| tree | 2b47799379ec07dbd478b7abda388969e9b8be9e /common.asm | |
| parent | Palette differences between Red and Blue version. (diff) | |
| download | pokeyellow-916b31351797bece6510db6128fb7fd24b6ccc3f.tar.gz pokeyellow-916b31351797bece6510db6128fb7fd24b6ccc3f.tar.xz pokeyellow-916b31351797bece6510db6128fb7fd24b6ccc3f.zip | |
Fix a RAM location mis-labeling. At $D4E4 there is the list of current map's people-movement-permissions, not the list of map's text-pointers.
hg-commit-id: 409379e6e31e
Diffstat (limited to 'common.asm')
| -rw-r--r-- | common.asm | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1408,7 +1408,7 @@ Function3541: ; 3541 call Function354E ld [hl],$FF call Function3558 - ld [hl],$FF + ld [hl],$FF ; prevent person from walking? pop hl ret @@ -1422,7 +1422,7 @@ Function354E: ; 354E Function3558: ; 3558 push de - ld hl,W_MAPTEXTPTRLIST + ld hl,W_PEOPLEMOVEPERMISSIONS ld a,[$FF8C] ; the sprite to move dec a add a |
