diff options
author | Daniel Harding <33dannye@gmail.com> | 2020-11-30 16:35:33 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-30 16:35:33 -0600 |
commit | bb76c06120bcd1fc0f86bd3cc96cbbde93c0c80c (patch) | |
tree | 7629f516fd4c09dbfb907c5d4154e0a58666a5a6 /engine/movie | |
parent | 6adbaefde14f5e9039aa42a6c96ce476a4107925 (diff) | |
parent | ae0e2fd1948dc040e42fcbeeb2cae3033af5ce9f (diff) |
Merge pull request #304 from SatoMew/master
Rename *TilesetType to *TileAnimations
Diffstat (limited to 'engine/movie')
-rw-r--r-- | engine/movie/evolution.asm | 2 | ||||
-rw-r--r-- | engine/movie/hall_of_fame.asm | 2 | ||||
-rw-r--r-- | engine/movie/oak_speech/oak_speech.asm | 2 | ||||
-rw-r--r-- | engine/movie/title.asm | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/engine/movie/evolution.asm b/engine/movie/evolution.asm index cabe7254..77840556 100644 --- a/engine/movie/evolution.asm +++ b/engine/movie/evolution.asm @@ -19,7 +19,7 @@ EvolveMon: call Delay3 xor a ldh [hAutoBGTransferEnabled], a - ldh [hTilesetType], a + ldh [hTileAnimations], a ld a, [wEvoOldSpecies] ld [wWholeScreenPaletteMonSpecies], a ld c, 0 diff --git a/engine/movie/hall_of_fame.asm b/engine/movie/hall_of_fame.asm index a7d3ed40..d37d95f8 100644 --- a/engine/movie/hall_of_fame.asm +++ b/engine/movie/hall_of_fame.asm @@ -19,7 +19,7 @@ AnimateHallOfFame: call FillMemory xor a ld [wUpdateSpritesEnabled], a - ldh [hTilesetType], a + ldh [hTileAnimations], a ld [wSpriteFlipped], a ld [wLetterPrintingDelayFlags], a ; no delay ld [wHoFMonOrPlayer], a ; mon diff --git a/engine/movie/oak_speech/oak_speech.asm b/engine/movie/oak_speech/oak_speech.asm index 4b64f20d..93cdfaab 100644 --- a/engine/movie/oak_speech/oak_speech.asm +++ b/engine/movie/oak_speech/oak_speech.asm @@ -52,7 +52,7 @@ OakSpeech: ld [wDestinationMap], a call SpecialWarpIn xor a - ldh [hTilesetType], a + ldh [hTileAnimations], a ld a, [wd732] bit 1, a ; possibly a debug mode bit jp nz, .skipChoosingNames diff --git a/engine/movie/title.asm b/engine/movie/title.asm index ef015795..8f97f8fa 100644 --- a/engine/movie/title.asm +++ b/engine/movie/title.asm @@ -26,7 +26,7 @@ DisplayTitleScreen: ld a, $1 ldh [hAutoBGTransferEnabled], a xor a - ldh [hTilesetType], a + ldh [hTileAnimations], a ldh [hSCX], a ld a, $40 ldh [hSCY], a |