From 914d50d78f5041bea136aa269b240559e2a13fe9 Mon Sep 17 00:00:00 2001 From: Ivan Vangelista Date: Wed, 30 Dec 2020 18:23:37 +0100 Subject: [PATCH] atarittl.cpp: removed pongdbl since it has been moved and emulated in pong.cpp [gregf] --- src/mame/drivers/atarittl.cpp | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/mame/drivers/atarittl.cpp b/src/mame/drivers/atarittl.cpp index ca7f4346f98..5dc4fa2f118 100644 --- a/src/mame/drivers/atarittl.cpp +++ b/src/mame/drivers/atarittl.cpp @@ -79,6 +79,8 @@ #include "screen.h" +namespace { + // copied by Pong, not accurate for this driver! // start #define MASTER_CLOCK 7159000 @@ -582,10 +584,6 @@ ROM_START( pinpong ) ROM_REGION( 0x10000, "maincpu", ROMREGION_ERASE00 ) ROM_END -ROM_START( pongdbl ) - ROM_REGION( 0x10000, "maincpu", ROMREGION_ERASE00 ) -ROM_END - ROM_START( pursuit ) ROM_REGION( 0x10000, "maincpu", ROMREGION_ERASE00 ) ROM_END @@ -616,6 +614,9 @@ ROM_END */ +} // Anonymous namespace + + GAME(1975, antiairc, 0, atarikee, 0, atarikee_state, empty_init, ROT0, "Atari", "Anti-Aircraft [TTL]", MACHINE_IS_SKELETON) GAME(1975, crashnsc, 0, atarikee, 0, atarikee_state, empty_init, ROT0, "Atari", "Crash 'n Score/Stock Car [TTL]", MACHINE_IS_SKELETON) GAME(1974, gtrak10, 0, gtrak10, gtrak10, gtrak10_state, empty_init, ROT0, "Atari/Kee", "Gran Trak 10/Trak 10/Formula K [TTL]", MACHINE_NOT_WORKING | MACHINE_NO_SOUND)