Update version.

This commit is contained in:
LLCoolDave
2017-08-05 17:52:30 +02:00
parent 1d8f17de6f
commit 1717511e76
2 changed files with 3 additions and 3 deletions

2
Rom.py
View File

@@ -371,7 +371,7 @@ def patch_rom(world, rom, hashtable, beep='normal', sprite=None):
# set rom name
# 21 bytes
rom.write_bytes(0x7FC0, bytearray('ER_046_%09d_' % world.seed, 'utf8') + world.option_identifier.to_bytes(4, 'big'))
rom.write_bytes(0x7FC0, bytearray('ER_047_%09d_' % world.seed, 'utf8') + world.option_identifier.to_bytes(4, 'big'))
# set heart beep rate
rom.write_byte(0x180033, {'off': 0x00, 'half': 0x40, 'quarter': 0x80, 'normal': 0x20}[beep])