diff options
author | ProjectRevoTPP <projectrevotpp@hotmail.com> | 2017-06-25 20:12:52 -0400 |
---|---|---|
committer | ProjectRevoTPP <projectrevotpp@hotmail.com> | 2017-06-25 20:12:52 -0400 |
commit | f85513f76999c79c6355711fcefaf058d02c7c46 (patch) | |
tree | ad60d6edad654974f1ef82538da0a402abd69903 /asm/rom_header.inc | |
parent | 637774362fdbedd8a54b651e6196a1e1a4f4c093 (diff) | |
parent | 06b6cada0ddedc62063171703ba6607019751a9a (diff) |
Merge branch 'master' of https://github.com/pret/pokeruby into sound_check_menu
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 |