diff options
author | chaos-lord <dd4791.mariokarter@hotmail.co.uk> | 2017-07-20 23:18:03 +0100 |
---|---|---|
committer | chaos-lord <dd4791.mariokarter@hotmail.co.uk> | 2017-07-20 23:18:03 +0100 |
commit | a0ee496a54dbdaa65fbd5e0d57748e233df14956 (patch) | |
tree | 686413b17fb55858ad6365337f048ba3bf59594c | |
parent | 76c86ff35e401760a334c489f099598525a75952 (diff) |
fixed matching
-rw-r--r-- | engine/pinball_game/catchem_mode.asm | 4 | ||||
-rw-r--r-- | engine/pinball_game/evolution_mode/evolution_mode_red_field.asm | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/engine/pinball_game/catchem_mode.asm b/engine/pinball_game/catchem_mode.asm index 8b81460..2780437 100644 --- a/engine/pinball_game/catchem_mode.asm +++ b/engine/pinball_game/catchem_mode.asm @@ -1157,8 +1157,8 @@ PlayLowTimeSfx: ; 0x107f8 ret
Func_10825: ; 0x10825
- call Retrieve8DigitBCDValueAtwd47a ;retreive ???, put it on the stack
- push bc
+ call Retrieve8DigitBCDValueAtwd47a ;retreive somethign score related, put it on the stack
+ push bc ;store data on stack to bge read in by LoadScoreTextFromStack
push de
call AddBCDEToCurBufferValue
call FillBottomMessageBufferWithBlackTile
diff --git a/engine/pinball_game/evolution_mode/evolution_mode_red_field.asm b/engine/pinball_game/evolution_mode/evolution_mode_red_field.asm index f9f0ce6..60bba51 100644 --- a/engine/pinball_game/evolution_mode/evolution_mode_red_field.asm +++ b/engine/pinball_game/evolution_mode/evolution_mode_red_field.asm @@ -4,7 +4,7 @@ HandleRedEvoModeCollision: ; 0x20581 jp z, Func_2080f ;voltorb
cp SPECIAL_COLLISION_STARYU_ALLY_TRIGGER
jp z, Func_20839
- cp SPECIAL_COLLISION_SHELLDER
+ cp SPECIAL_COLLISION_BELLSPROUT
jp z, Func_2085a ;bellsprout
cp SPECIAL_COLLISION_STARYU
jp z, Func_20887 ;staryu
|