diff options
| author | Sylvie <35663410+Rangi42@users.noreply.github.com> | 2024-09-24 09:33:33 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-09-24 09:33:33 -0400 |
| commit | b5d2540e7c56d7ae596ba49d105b1a01dd6ffd29 (patch) | |
| tree | e5cd5ae7b6f06ce33f495ad3ba995761ec93f72f /engine/movie | |
| parent | Fix comment: Road -> Roar (#466) (diff) | |
| download | pokeyellow-b5d2540e7c56d7ae596ba49d105b1a01dd6ffd29.tar.gz pokeyellow-b5d2540e7c56d7ae596ba49d105b1a01dd6ffd29.tar.xz pokeyellow-b5d2540e7c56d7ae596ba49d105b1a01dd6ffd29.zip | |
Identify more bit flags (#465)
* Identify more bit flags
* Space
Diffstat (limited to 'engine/movie')
| -rw-r--r-- | engine/movie/oak_speech/oak_speech.asm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engine/movie/oak_speech/oak_speech.asm b/engine/movie/oak_speech/oak_speech.asm index 44b236c8..5c364435 100644 --- a/engine/movie/oak_speech/oak_speech.asm +++ b/engine/movie/oak_speech/oak_speech.asm @@ -4,9 +4,9 @@ PrepareOakSpeech: ld a, [wOptions] push af ; Retrieve BIT_DEBUG_MODE set in DebugMenu for StartNewGameDebug. - ; BUG: StartNewGame carries over bit 5 from previous save files, + ; BUG: StartNewGame carries over BIT_ALWAYS_ON_BIKE from previous save files, ; which causes CheckForceBikeOrSurf to not return. - ; To fix this in debug builds, reset bit 5 here or in StartNewGame. + ; To fix this in debug builds, reset BIT_ALWAYS_ON_BIKE here or in StartNewGame. ; In non-debug builds, the instructions can be removed. ld a, [wStatusFlags6] push af |
