summaryrefslogtreecommitdiffstatshomepage
path: root/src
diff options
context:
space:
mode:
author Couriersud <couriersud@users.noreply.github.com>2008-03-07 20:48:37 +0000
committer Couriersud <couriersud@users.noreply.github.com>2008-03-07 20:48:37 +0000
commit459baa66d29e564ddcc5368402b596f3797713f7 (patch)
tree4ead631146f837c9bc9b5151aa9481af59dfea28 /src
parent0d4d375938c0d547e22bbf0019383a0d303ca371 (diff)
Fix mantis bug ID 00898 (gseeker0101yel)
Diffstat (limited to 'src')
-rw-r--r--src/mame/drivers/taito_f3.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mame/drivers/taito_f3.c b/src/mame/drivers/taito_f3.c
index f6efc9ad760..72b8dc7e874 100644
--- a/src/mame/drivers/taito_f3.c
+++ b/src/mame/drivers/taito_f3.c
@@ -424,11 +424,14 @@ static NVRAM_HANDLER( taito_f3 )
};
// RecalH does not initialise it's eeprom on first boot, so we provide one.
+ // Same applies to gseeker.
EEPROM_init(&eeprom_interface_93C46);
if (file)
EEPROM_load(file);
else if (f3_game==RECALH)
EEPROM_set_data(recalh_eeprom,128);
+ else if (f3_game==GSEEKER)
+ EEPROM_set_data(recalh_eeprom,128);
}
}