diff options
| author | 2008-02-02 04:02:42 +0000 | |
|---|---|---|
| committer | 2008-02-02 04:02:42 +0000 | |
| commit | 03510c0a11fc90b67760965ef37beb850a032f28 (patch) | |
| tree | 4a232378c68ddc93f2f169cb75ef554785ff50ac /src | |
| parent | e52902f9ea1f56a31003027a61cd5afb3e859f07 (diff) | |
- Removed color table
- Renamed driver to ampoker.c
- Removed cubeqst.o from makefile. Not sure what it is, but there is so such driver
Diffstat (limited to 'src')
| -rw-r--r-- | src/mame/drivers/ampoker2.c (renamed from src/mame/drivers/ampoker.c) | 15 | ||||
| -rw-r--r-- | src/mame/mame.mak | 5 | ||||
| -rw-r--r-- | src/mame/video/ampoker2.c (renamed from src/mame/video/ampoker.c) | 0 |
3 files changed, 9 insertions, 11 deletions
diff --git a/src/mame/drivers/ampoker.c b/src/mame/drivers/ampoker2.c index 53c661680a4..5c28af10246 100644 --- a/src/mame/drivers/ampoker.c +++ b/src/mame/drivers/ampoker2.c @@ -297,7 +297,7 @@ #include "driver.h" #include "sound/ay8910.h" -#include "ampoker.lh" +#include "ampoker2.lh" #include "sigmapkr.lh" /* from video */ @@ -876,7 +876,6 @@ static MACHINE_DRIVER_START( ampoker2 ) MDRV_GFXDECODE(ampoker2) MDRV_PALETTE_LENGTH(512) - MDRV_COLORTABLE_LENGTH(512) MDRV_PALETTE_INIT(ampoker2) MDRV_VIDEO_START(ampoker2) @@ -1001,11 +1000,11 @@ ROM_END *************************/ /* YEAR NAME PARENT MACHINE INPUT INIT ROT COMPANY FULLNAME FLAGS LAYOUT */ -GAMEL( 1990, ampoker2, 0, ampoker2, ampoker2, 0, ROT0, "Novomatic", "American Poker II", 0, layout_ampoker ) -GAMEL( 1990, ampkr2b1, ampoker2, ampoker2, ampoker2, 0, ROT0, "Bootleg", "American Poker II (bootleg, set 1)", 0, layout_ampoker ) -GAMEL( 1990, ampkr2b2, ampoker2, ampoker2, ampoker2, 0, ROT0, "Bootleg", "American Poker II (bootleg, set 2)", 0, layout_ampoker ) -GAMEL( 1994, ampkr2b3, ampoker2, ampoker2, ampoker2, 0, ROT0, "Bootleg", "American Poker II (bootleg, set 3)", 0, layout_ampoker ) -GAMEL( 1995, ampkr95, ampoker2, ampoker2, ampkr95, 0, ROT0, "Bootleg", "American Poker 95", 0, layout_ampoker ) -GAMEL( 1990, pkrdewin, ampoker2, ampoker2, ampoker2, 0, ROT0, "Bootleg", "Poker De Win", 0, layout_ampoker ) +GAMEL( 1990, ampoker2, 0, ampoker2, ampoker2, 0, ROT0, "Novomatic", "American Poker II", 0, layout_ampoker2 ) +GAMEL( 1990, ampkr2b1, ampoker2, ampoker2, ampoker2, 0, ROT0, "Bootleg", "American Poker II (bootleg, set 1)", 0, layout_ampoker2 ) +GAMEL( 1990, ampkr2b2, ampoker2, ampoker2, ampoker2, 0, ROT0, "Bootleg", "American Poker II (bootleg, set 2)", 0, layout_ampoker2 ) +GAMEL( 1994, ampkr2b3, ampoker2, ampoker2, ampoker2, 0, ROT0, "Bootleg", "American Poker II (bootleg, set 3)", 0, layout_ampoker2 ) +GAMEL( 1995, ampkr95, ampoker2, ampoker2, ampkr95, 0, ROT0, "Bootleg", "American Poker 95", 0, layout_ampoker2 ) +GAMEL( 1990, pkrdewin, ampoker2, ampoker2, ampoker2, 0, ROT0, "Bootleg", "Poker De Win", 0, layout_ampoker2 ) GAMEL( 1995, sigmapkr, 0, ampoker2, sigmapkr, 0, ROT0, "Sigma Inc.", "Sigma Poker", 0, layout_sigmapkr ) GAMEL( 1998, sigma2k, 0, sigma2k, sigmapkr, 0, ROT0, "Sigma Inc.", "Sigma Poker 2000", GAME_NOT_WORKING, layout_sigmapkr ) diff --git a/src/mame/mame.mak b/src/mame/mame.mak index db1b4922ca7..d8e70c2d3de 100644 --- a/src/mame/mame.mak +++ b/src/mame/mame.mak @@ -1503,7 +1503,7 @@ $(MAMEOBJ)/misc.a: \ $(DRIVERS)/acefruit.o \ $(DRIVERS)/adp.o \ $(DRIVERS)/ambush.o $(VIDEO)/ambush.o \ - $(DRIVERS)/ampoker.o $(VIDEO)/ampoker.o \ + $(DRIVERS)/ampoker2.o $(VIDEO)/ampoker2.o \ $(DRIVERS)/amspdwy.o $(VIDEO)/amspdwy.o \ $(DRIVERS)/artmagic.o $(VIDEO)/artmagic.o \ $(DRIVERS)/attckufo.o $(AUDIO)/attckufo.o $(VIDEO)/attckufo.o \ @@ -1519,7 +1519,6 @@ $(MAMEOBJ)/misc.a: \ $(DRIVERS)/coolpool.o \ $(DRIVERS)/cowrace.o \ $(DRIVERS)/crystal.o $(VIDEO)/vrender0.o \ - $(DRIVERS)/cubeqst.o \ $(DRIVERS)/cybertnk.o \ $(DRIVERS)/dcheese.o $(VIDEO)/dcheese.o \ $(DRIVERS)/dgpix.o \ @@ -1643,7 +1642,7 @@ $(DRIVERS)/8080bw.o: $(LAYOUT)/invrvnge.lh $(DRIVERS)/acefruit.o: $(LAYOUT)/sidewndr.lh -$(DRIVERS)/ampoker.o: $(LAYOUT)/ampoker.lh \ +$(DRIVERS)/ampoker2.o: $(LAYOUT)/ampoker2.lh \ $(LAYOUT)/sigmapkr.lh \ $(DRIVERS)/astrocde.o: $(LAYOUT)/tenpindx.lh diff --git a/src/mame/video/ampoker.c b/src/mame/video/ampoker2.c index 499f98cf7d6..499f98cf7d6 100644 --- a/src/mame/video/ampoker.c +++ b/src/mame/video/ampoker2.c |
