Update ROM header naming

Just a version number fix I missed... two versions in a row.
This commit is contained in:
AmazingAmpharos 2019-04-30 18:03:57 -05:00 committed by GitHub
parent e89f9454f9
commit 428862e8ac
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

2
Rom.py
View File

@ -831,7 +831,7 @@ def patch_rom(world, rom, hashtable, beep='normal', color='red', sprite=None):
# set rom name # set rom name
# 21 bytes # 21 bytes
rom.write_bytes(0x7FC0, bytearray('ER_060_%09d\0' % world.seed, 'utf8') + world.option_identifier.to_bytes(4, 'big')) rom.write_bytes(0x7FC0, bytearray('ER_062_%09d\0' % world.seed, 'utf8') + world.option_identifier.to_bytes(4, 'big'))
# Write title screen Code # Write title screen Code
hashint = int(rom.get_hash(), 16) hashint = int(rom.get_hash(), 16)