Bump version number & new logic hash

This commit is contained in:
Kevin Cathcart
2018-01-07 04:49:47 -05:00
parent a57a64ecf9
commit 9a2198ac8f
2 changed files with 18 additions and 10 deletions

2
Rom.py
View File

@@ -732,7 +732,7 @@ def patch_rom(world, rom, hashtable, beep='normal', sprite=None):
# set rom name
# 21 bytes
rom.write_bytes(0x7FC0, bytearray('ER_050_%09d\0' % world.seed, 'utf8') + world.option_identifier.to_bytes(4, 'big'))
rom.write_bytes(0x7FC0, bytearray('ER_052_%09d\0' % world.seed, 'utf8') + world.option_identifier.to_bytes(4, 'big'))
# store hash table for main menu hash
rom.write_bytes(0x187F00, hashtable)