Skip to content

Commit

Permalink
fix: credits crash
Browse files Browse the repository at this point in the history
  • Loading branch information
aerinon committed Jul 1, 2024
1 parent 27e792d commit defd237
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 14 deletions.
13 changes: 12 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,18 @@
# Feature Notes

1.4.3: File Select/End Game screen: Mirror Scroll and Pseudoboots added (Thanks Hiimcody!)


# Patch Notes

Changelog archive

* 1.4.3
* Key Logic Algorithm: Renamed "Default" to "Dangerous" to indicate the potential soft-lock issues
* Hera Basement Cage: Fix for small key counting multiple times (again)
* Generation: Fixed several generation problems with ER and intensity 3
* Customizer: Generation bug when attempting to place small keys
* Hints: Updated pedestal/tablet text to be more clear
* Enemizer: Various enemy bans
* 1.4.2
* New ER Options:
* [Skull Woods shuffle options](#skull-woods-shuffle)
Expand Down
2 changes: 1 addition & 1 deletion Main.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
from source.enemizer.Enemizer import randomize_enemies
from source.rom.DataTables import init_data_tables

version_number = '1.4.3'
version_number = '1.4.4'
version_branch = '-u'
__version__ = f'{version_number}{version_branch}'

Expand Down
13 changes: 2 additions & 11 deletions RELEASENOTES.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,4 @@
# New Features

File Select/End Game screen: Mirror Scroll and Pseudoboots added (Thanks Hiimcody!)

# Patch Notes

* 1.4.3
* Key Logic Algorithm: Renamed "Default" to "Dangerous" to indicate the potential soft-lock issues
* Hera Basement Cage: Fix for small key counting multiple times (again)
* Generation: Fixed several generation problems with ER and intensity 3
* Customizer: Generation bug when attempting to place small keys
* Hints: Updated pedestal/tablet text to be more clear
* Enemizer: Various enemy bans
1.4.4
- Fixed a crash bear the end of the credits when total collection rate was over 1000
2 changes: 1 addition & 1 deletion Rom.py
Original file line number Diff line number Diff line change
Expand Up @@ -740,7 +740,7 @@ def credits_digit(num):
rom.write_byte(cr_pc+0x1e, 0xEE) # slash
rom.write_byte(cr_pc+0x1f, thousands_bot)
# modify stat config
stat_address = 0x2397B2 # 0x23B969 - old
stat_address = 0x239864
stat_pc = snes_to_pc(stat_address)
rom.write_byte(stat_pc, 0xa9) # change to pos 21 (from b1)
rom.write_byte(stat_pc+2, 0xc0) # change to 12 bits (from a0)
Expand Down

0 comments on commit defd237

Please sign in to comment.