diff options
author | scnorton <scnorton@biociphers.org> | 2017-06-27 09:48:16 -0400 |
---|---|---|
committer | scnorton <scnorton@biociphers.org> | 2017-06-27 09:48:16 -0400 |
commit | 08c23fb1c483ffcf7c17b8ac061ad4ff77318625 (patch) | |
tree | 65bfdd399541ebd4f558614fd566aa92cfb94422 /asm/rom_header.inc | |
parent | 41cc0382a43161c0c66ddaf73742ecec8dcbdcc6 (diff) | |
parent | 06b6cada0ddedc62063171703ba6607019751a9a (diff) |
Merge branch 'master' into field_tasks
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 |