Fix Y Button Bug Allowing Checked Players to Instantly Stand Up
Problem:
When a player is knocked down, pressing the Y button causes them to get up instantly. This behavior doesn't occur on GENS or the previous version, NHLPA 93.
The knocked down player should stay down for 3 seconds as intended.
Solution:
The Y button performs a 'Hook / Hold' animation when you don't have the puck. The existing code already prevents "Hook/Hold" if your player is "Speed Boosting"
To improve this, we add an additional check when the Y button is pressed to determine if the controlled player's animation is in the 'Knocked Down' position.
If the player is knocked down, exit the routine without performing the "Hook / Hold" animation similar to "Speed Boosting" code.
Technical Details:
The code below is executed when the Y button is pressed without the puck.
Code:
Load the selected player animation/action, 0 = Standing, 1 = Knocked Down or Passing, 8 = Slapshot, F342 = Speed Boost
Check if the player is knocked down
If the player is knocked down then branch to RTL (Exit).
If the Player is NOT knocked down then continue back to the original code.
New Code:
Download the patch tool to create your own ROM or patch an existing ROM.
Hex Version:
1) Replace old hex value with new hex value.
Headerless ROM (.SFC)
ROM Offsets: (hex) F2251
Old: BD E3 14
New: 4C C5 FB
ROM Offsets: (hex) F7BC5
Old: FF FF FF FF FF FF FF FF FF FF FF FF
New: BD E3 14 C9 01 00 F0 03 4C 56 A2 6B
Headered ROM (.SMC)
ROM Offsets: (hex) F2451
Old: BD E3 14
New: 4C C5 FB
ROM Offsets: (hex) F7DC5
Old: FF FF FF FF FF FF FF FF FF FF FF FF
New: BD E3 14 C9 01 00 F0 03 4C 56 A2 6B