summaryrefslogtreecommitdiffstatshomepage
path: root/src
diff options
context:
space:
mode:
author David Haywood <mamehaze@users.noreply.github.com>2015-07-29 00:16:04 +0100
committer David Haywood <mamehaze@users.noreply.github.com>2015-07-29 00:16:04 +0100
commit736e7918e8973b1dcd1d504e109f608431cfc496 (patch)
tree03e7d065daa186641ba87a8684d730fb9c20bdc3 /src
parentb5eb22a4c0297395e15777a7d8bf9369b126ff20 (diff)
added some new GameKing dumps [Team Europe]
Diffstat (limited to 'src')
-rw-r--r--src/mess/drivers/gameking.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mess/drivers/gameking.c b/src/mess/drivers/gameking.c
index da070c6a4aa..d6d277a936b 100644
--- a/src/mess/drivers/gameking.c
+++ b/src/mess/drivers/gameking.c
@@ -106,7 +106,7 @@ DEVICE_IMAGE_LOAD_MEMBER( gameking_state, gameking_cart )
{
UINT32 size = m_cart->common_get_size("rom");
- if (size > 0x20000)
+ if (size > 0x80000)
{
image.seterror(IMAGE_ERROR_UNSPECIFIED, "Unsupported cartridge size");
return IMAGE_INIT_FAIL;
@@ -182,6 +182,7 @@ static MACHINE_CONFIG_START( gameking, gameking_state )
/* Software lists */
MCFG_SOFTWARE_LIST_ADD("cart_list", "gameking")
+ MCFG_SOFTWARE_LIST_ADD("cart_list_3", "gameking3") // maybe not compatible with this system (different internal bios?)
MACHINE_CONFIG_END
ROM_START(gameking)