mirror of
https://github.com/libretro/mgba.git
synced 2024-11-28 02:30:21 +00:00
Fix magic number for some games
This commit is contained in:
parent
0050fb23c3
commit
eecf70ee58
@ -14,8 +14,8 @@
|
||||
const uint32_t GBA_ARM7TDMI_FREQUENCY = 0x1000000;
|
||||
const uint32_t GBA_COMPONENT_MAGIC = 0x1000000;
|
||||
|
||||
static const size_t GBA_ROM_MAGIC_OFFSET = 1;
|
||||
static const uint8_t GBA_ROM_MAGIC[] = { 0x00, 0x00, 0xEA };
|
||||
static const size_t GBA_ROM_MAGIC_OFFSET = 2;
|
||||
static const uint8_t GBA_ROM_MAGIC[] = { 0x00, 0xEA };
|
||||
|
||||
enum {
|
||||
SP_BASE_SYSTEM = 0x03FFFF00,
|
||||
|
Loading…
Reference in New Issue
Block a user