diff options
author | scnorton <scnorton@biociphers.org> | 2017-06-27 15:01:18 -0400 |
---|---|---|
committer | scnorton <scnorton@biociphers.org> | 2017-06-27 15:01:18 -0400 |
commit | 00c7dee919c8f93b8519a7eede2c41ba2ddcaf08 (patch) | |
tree | 5707f8764920abcd4cffca84c675e5c53c32559d /asm/rom_header.inc | |
parent | 3d9eb18add0d8a9eb5bfa77fc64cd7b1f37fea5d (diff) | |
parent | 06b6cada0ddedc62063171703ba6607019751a9a (diff) |
Merge branch 'master' into pokemon_data
Diffstat (limited to 'asm/rom_header.inc')
-rw-r--r-- | asm/rom_header.inc | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/asm/rom_header.inc b/asm/rom_header.inc index a7348ad1f..43eec30bb 100644 --- a/asm/rom_header.inc +++ b/asm/rom_header.inc @@ -30,9 +30,14 @@ RomHeaderGameTitle: RomHeaderGameCode: .ifdef SAPPHIRE - .ascii "AXPE" + .ascii "AXP" .else - .ascii "AXVE" + .ascii "AXV" + .endif + .ifdef ENGLISH + .ascii "E" + .else + .ascii "D" .endif RomHeaderMakerCode: @@ -54,11 +59,15 @@ RomHeaderSoftwareVersion: .byte REVISION RomHeaderChecksum: + .ifdef ENGLISH .ifdef SAPPHIRE .byte 0x55 - REVISION .else .byte 0x41 - REVISION .endif + .else + .byte 0x42 + .endif RomHeaderReserved2: .space 2 |