mirror of
https://github.com/mamedev/mame.git
synced 2024-11-16 07:48:32 +01:00
added superbug color overlay (info from external artwork by Mr Do)
This commit is contained in:
parent
bd299deef7
commit
37fb1f82b5
4 changed files with 26 additions and 1 deletions
1
.gitattributes
vendored
1
.gitattributes
vendored
|
@ -4479,6 +4479,7 @@ src/mame/layout/stisub.lay svneol=native#text/plain
|
|||
src/mame/layout/stocker.lay svneol=native#text/plain
|
||||
src/mame/layout/subroc3d.lay svneol=native#text/plain
|
||||
src/mame/layout/sundance.lay svneol=native#text/plain
|
||||
src/mame/layout/superbug.lay svneol=native#text/plain
|
||||
src/mame/layout/superchs.lay svneol=native#text/plain
|
||||
src/mame/layout/suprstar.lay svneol=native#text/plain
|
||||
src/mame/layout/tailg.lay svneol=native#text/plain
|
||||
|
|
|
@ -10,6 +10,8 @@ Atari Fire Truck + Super Bug + Monte Carlo driver
|
|||
#include "includes/firetrk.h"
|
||||
#include "sound/discrete.h"
|
||||
|
||||
#include "superbug.lh"
|
||||
|
||||
#define MASTER_CLOCK (XTAL_12_096MHz)
|
||||
|
||||
|
||||
|
@ -1020,6 +1022,6 @@ ROM_START( montecar )
|
|||
ROM_END
|
||||
|
||||
|
||||
GAME( 1977, superbug, 0, superbug, superbug, driver_device, 0, ROT270, "Atari (Kee Games)", "Super Bug", 0 )
|
||||
GAMEL(1977, superbug, 0, superbug, superbug, driver_device, 0, ROT270, "Atari (Kee Games)", "Super Bug", 0, layout_superbug )
|
||||
GAME( 1978, firetrk, 0, firetrk, firetrk, driver_device, 0, ROT270, "Atari", "Fire Truck / Smokey Joe", 0 )
|
||||
GAME( 1979, montecar, 0, montecar, montecar, driver_device, 0, ROT270, "Atari", "Monte Carlo", 0 )
|
||||
|
|
20
src/mame/layout/superbug.lay
Normal file
20
src/mame/layout/superbug.lay
Normal file
|
@ -0,0 +1,20 @@
|
|||
<?xml version="1.0"?>
|
||||
<mamelayout version="2">
|
||||
|
||||
<!-- NOTE: highlight should be a bit star-shaped, not doable in MAME internal layout -->
|
||||
|
||||
<element name="highlight">
|
||||
<disk>
|
||||
<color red="1.0" green="1.0" blue="0.125" />
|
||||
</disk>
|
||||
</element>
|
||||
|
||||
<view name="Color Overlay">
|
||||
<screen index="0">
|
||||
<bounds left="0" top="0" right="300" bottom="400" />
|
||||
</screen>
|
||||
<overlay element="highlight">
|
||||
<bounds x="117" y="167" width="66" height="66" />
|
||||
</overlay>
|
||||
</view>
|
||||
</mamelayout>
|
|
@ -2063,6 +2063,8 @@ $(DRIVERS)/dragrace.o: $(LAYOUT)/dragrace.lh
|
|||
|
||||
$(DRIVERS)/firebeat.o: $(LAYOUT)/firebeat.lh
|
||||
|
||||
$(DRIVERS)/firetrk.o: $(LAYOUT)/superbug.lh
|
||||
|
||||
$(DRIVERS)/flicker.o: $(LAYOUT)/flicker.lh
|
||||
|
||||
$(DRIVERS)/fortecar.o: $(LAYOUT)/fortecrd.lh
|
||||
|
|
Loading…
Reference in a new issue