Version number to satisfy msi requirement

Apparently we are required to always have three distinct numeric fields. Hilarious.
This commit is contained in:
AmazingAmpharos
2018-03-03 12:29:52 -06:00
committed by GitHub
parent 52300e8c85
commit c5b62c9b93
2 changed files with 2 additions and 2 deletions

2
Rom.py
View File

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