mirror of
https://github.com/holub/mame
synced 2025-04-22 16:31:49 +03:00
Merge pull request #3506 from KaleviKolttonen/lode_runner_sg1000_rom_detection
Fix Lode Runner SG1000/SC-3000 ROM image detection
This commit is contained in:
commit
e23d59da45
@ -561,6 +561,10 @@ int sega8_cart_slot_device::get_cart_type(const uint8_t *ROM, uint32_t len) cons
|
||||
}
|
||||
}
|
||||
|
||||
// Lode Runner Japan Europe
|
||||
if (len == 0x8000 && !strncmp((const char *)&ROM[0x226c], "LICENSEDFROMBRODERBUND@SOFTWARE@INC", 35))
|
||||
type = SEGA8_BASE_ROM;
|
||||
|
||||
// Terebi Oekaki (TV Draw)
|
||||
if (len >= 0x13b3 + 7 && !strncmp((const char *)&ROM[0x13b3], "annakmn", 7))
|
||||
type = SEGA8_TEREBIOEKAKI;
|
||||
|
Loading…
Reference in New Issue
Block a user