set hit count cap to 999 to restore US/JP 1.0 behaviour

This commit is contained in:
Sonic Dreamcaster 2025-12-13 03:35:18 -03:00
parent fff98a73be
commit 20c0b41c1e
1 changed files with 5 additions and 5 deletions

View File

@ -1814,11 +1814,11 @@ void Display_Update(void) {
// @port: Display player's face at all times.
gPlayer[0].arwing.drawFace = true;
// @port remove 511 hit count cap, hated by generations
#if 0
// 511 hit count cap
if (gHitCount > 511) {
gHitCount = 511;
// @port: set hit count cap to 999 to restore US/JP 1.0 behaviour
#if 1
// 999 hit count cap (511 in 1.1 US)
if (gHitCount > 999) {
gHitCount = 999;
}
#endif