diff options
author | yenatch <yenatch@gmail.com> | 2017-06-25 00:31:41 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-25 00:31:41 -0400 |
commit | 8dd12ad0e3faeee0e88b62bf486a764717b171fe (patch) | |
tree | b776589bf88596d7280011c3ea1d9befd32b287f /asm/rom_header.inc | |
parent | e72babd734ab7fd4e5c6d29f456b82d5e76e1bde (diff) | |
parent | 2cae14cf5ae83831d5c387b3823de34d8d476908 (diff) |
Merge pull request #324 from marijnvdwerf/de/integrate-data-includes
Integrate German
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 |