From 21d9be570c758acd59408f428164e5a9822f999f Mon Sep 17 00:00:00 2001 From: Aaron Giles Date: Thu, 13 Aug 2009 05:12:31 +0000 Subject: [PATCH] From: hoge hoge [mailto:c8cv@hotmail.com] Sent: Sunday, August 09, 2009 8:39 AM To: submit@mamedev.org Subject: depthch overlay Hi, Attached diff for 0133u1 adds a simple color overlay for Depthcharge based on http://www.arcadeflyers.com/?page=flyer&db=videodb&id=1701&image=1 , clone subhunt is excluded since that's a different cab and no good photos were found. Related mametesters bug: http://www.mametesters.org/view.php?id=2858 hap ________________________________________ --- .gitattributes | 2 ++ src/mame/drivers/vicdual.c | 6 ++-- src/mame/layout/depthch.lay | 18 ++++++++++++ src/mame/layout/spacwalk.lay | 57 ++++++++++++++++++++++++++++++++++++ src/mame/mame.mak | 2 ++ 5 files changed, 83 insertions(+), 2 deletions(-) create mode 100644 src/mame/layout/depthch.lay create mode 100644 src/mame/layout/spacwalk.lay diff --git a/.gitattributes b/.gitattributes index b4e896b04e6..80a68e69933 100644 --- a/.gitattributes +++ b/.gitattributes @@ -2620,6 +2620,7 @@ src/mame/layout/crusnexo.lay svneol=native#text/plain src/mame/layout/darius.lay svneol=native#text/plain src/mame/layout/dblaxle.lay svneol=native#text/plain src/mame/layout/deadeye.lay svneol=native#text/plain +src/mame/layout/depthch.lay svneol=native#text/plain src/mame/layout/dlair.lay svneol=native#text/plain src/mame/layout/drwho.lay svneol=native#text/plain src/mame/layout/elecyoyo.lay svneol=native#text/plain @@ -2686,6 +2687,7 @@ src/mame/layout/snookr10.lay svneol=native#text/plain src/mame/layout/solarq.lay svneol=native#text/plain src/mame/layout/sos.lay svneol=native#text/plain src/mame/layout/spacewin.lay -text svneol=native#plain/text +src/mame/layout/spacwalk.lay svneol=native#text/plain src/mame/layout/sspeedr.lay svneol=native#text/plain src/mame/layout/stactics.lay svneol=native#text/plain src/mame/layout/starcas.lay svneol=native#text/plain diff --git a/src/mame/drivers/vicdual.c b/src/mame/drivers/vicdual.c index 7603f8ee05b..4d891cd7b51 100644 --- a/src/mame/drivers/vicdual.c +++ b/src/mame/drivers/vicdual.c @@ -56,6 +56,8 @@ #include "cpu/i8085/i8085.h" #include "vicdual.h" +#include "depthch.lh" + /************************************* @@ -3218,8 +3220,8 @@ ROM_END * *************************************/ -GAME( 1977, depthch, 0, depthch, depthch, 0, ROT0, "Gremlin", "Depthcharge", GAME_IMPERFECT_SOUND ) -GAME( 1977, depthcho, depthch, depthch, depthch, 0, ROT0, "Gremlin", "Depthcharge (older)", GAME_IMPERFECT_SOUND ) +GAMEL(1977, depthch, 0, depthch, depthch, 0, ROT0, "Gremlin", "Depthcharge", GAME_IMPERFECT_SOUND, layout_depthch ) +GAMEL(1977, depthcho, depthch, depthch, depthch, 0, ROT0, "Gremlin", "Depthcharge (older)", GAME_IMPERFECT_SOUND, layout_depthch ) GAME( 1977, subhunt, depthch, depthch, depthch, 0, ROT0, "Taito", "Sub Hunter", GAME_IMPERFECT_SOUND ) GAME( 1977, safari, 0, safari, safari, 0, ROT0, "Gremlin", "Safari", GAME_NO_SOUND ) GAME( 1978, frogs, 0, frogs, frogs, 0, ROT0, "Gremlin", "Frogs", GAME_IMPERFECT_SOUND ) diff --git a/src/mame/layout/depthch.lay b/src/mame/layout/depthch.lay new file mode 100644 index 00000000000..64e29b52856 --- /dev/null +++ b/src/mame/layout/depthch.lay @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/src/mame/layout/spacwalk.lay b/src/mame/layout/spacwalk.lay new file mode 100644 index 00000000000..6acba50679b --- /dev/null +++ b/src/mame/layout/spacwalk.lay @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/mame/mame.mak b/src/mame/mame.mak index 85d62d9da1a..d7bf9fc051d 100644 --- a/src/mame/mame.mak +++ b/src/mame/mame.mak @@ -1822,6 +1822,8 @@ $(DRIVERS)/tx1.o: $(LAYOUT)/buggybjr.lh \ $(DRIVERS)/undrfire.o: $(LAYOUT)/cbombers.lh +$(DRIVERS)/vicdual.o: $(LAYOUT)/depthch.lh + $(DRIVERS)/videopin.o: $(LAYOUT)/videopin.lh $(DRIVERS)/videopkr.o: $(LAYOUT)/videopkr.lh \