From 428862e8ac4c597872ea7cc612a7a4cb857d3486 Mon Sep 17 00:00:00 2001 From: AmazingAmpharos Date: Tue, 30 Apr 2019 18:03:57 -0500 Subject: [PATCH] Update ROM header naming Just a version number fix I missed... two versions in a row. --- Rom.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rom.py b/Rom.py index 91b13b50..9f21eb0d 100644 --- a/Rom.py +++ b/Rom.py @@ -831,7 +831,7 @@ def patch_rom(world, rom, hashtable, beep='normal', color='red', sprite=None): # set rom name # 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 hashint = int(rom.get_hash(), 16)