Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix xevious samples #439

Merged
merged 3 commits into from Apr 5, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
20 changes: 11 additions & 9 deletions metadata/mame2003.xml
Expand Up @@ -10,7 +10,6 @@
<!ELEMENT description (#PCDATA)>
<!ELEMENT year (#PCDATA)>
<!ELEMENT manufacturer (#PCDATA)>
<!ELEMENT history (#PCDATA)>
<!ELEMENT biosset EMPTY>
<!ATTLIST biosset name CDATA #REQUIRED>
<!ATTLIST biosset description CDATA #REQUIRED>
Expand Down Expand Up @@ -27782,7 +27781,7 @@
</dipswitch>
<driver status="good" color="good" sound="good" palettesize="129"/>
</game>
<game name="xevios" cloneof="xevious" romof="xevious">
<game name="xevios" cloneof="xevious" romof="xevious" sampleof="xevious">
<description>Xevios</description>
<year>1982</year>
<manufacturer>bootleg</manufacturer>
Expand Down Expand Up @@ -27815,6 +27814,9 @@
<rom name="1.16j" size="4096" crc="2618f0ce" sha1="54e8644b5609d6f6ec717a7469c76901eb79f26e" region="user1" offset="0"/>
<rom name="2.17b" size="8192" crc="de359fac" sha1="a55df9984bfffafeadae8a5a63b07f1fa9c5eebf" region="user1" offset="1000"/>
<sample name="explo1.wav"/>
<sample name="explo2.wav"/>
<sample name="explo3.wav"/>
<sample name="explo4.wav"/>
<chip type="cpu" name="Z80" clock="3072000"/>
<chip type="cpu" name="Z80" clock="3072000"/>
<chip type="cpu" name="Z80" clock="3072000"/>
Expand Down Expand Up @@ -164458,7 +164460,7 @@
<dipvalue name="Off" default="yes"/>
<dipvalue name="On"/>
</dipswitch>
<driver status="preliminary" color="good" sound="good" palettesize="2048"/>
<driver status="good" color="good" sound="imperfect" palettesize="2048"/>
</game>
<game name="dnmtdeka" cloneof="diehard" romof="diehard">
<description>Dynamite Deka (Japan)</description>
Expand Down Expand Up @@ -166009,7 +166011,7 @@
<game name="pblbeach" romof="stvbios">
<description>Pebble Beach - The Great Shot</description>
<year>1995</year>
<manufacturer>T&amp;E Soft</manufacturer>
<manufacturer>TandE Soft</manufacturer>
<biosset name="japan" description="Japan (bios epr19730)" default="yes"/>
<biosset name="japana" description="Japan (bios mp17951a)"/>
<biosset name="us" description="USA (bios mp17952a)"/>
Expand Down Expand Up @@ -166770,7 +166772,7 @@
<driver status="preliminary" color="good" sound="preliminary" palettesize="2048"/>
</game>
<game name="shanhigw" romof="stvbios">
<description>Shanghai - The Great Wall / Shanghai Triple Threat</description>
<description>Shanghai - The Great Wall - Shanghai Triple Threat</description>
<year>1995</year>
<manufacturer>Sunsoft / Activision</manufacturer>
<biosset name="japan" description="Japan (bios epr19730)" default="yes"/>
Expand Down Expand Up @@ -167048,7 +167050,7 @@
<driver status="preliminary" color="good" sound="preliminary" palettesize="2048"/>
</game>
<game name="sokyugrt" romof="stvbios">
<description>Soukyugurentai / Terra Diver</description>
<description>Soukyugurentai - Terra Diver</description>
<year>1996</year>
<manufacturer>Raizing</manufacturer>
<biosset name="japan" description="Japan (bios epr19730)" default="yes"/>
Expand Down Expand Up @@ -172975,7 +172977,7 @@
<driver status="good" color="good" sound="good" palettesize="2080"/>
</game>
<game name="mp_sonic" romof="megaplay">
<description>MegaPlay: Sonic The Hedgehog</description>
<description>MegaPlay - Sonic The Hedgehog</description>
<year>1993</year>
<manufacturer>Sega</manufacturer>
<biosset name="ver1" description="Megaplay Bios (Ver. 1)" default="yes"/>
Expand Down Expand Up @@ -173046,7 +173048,7 @@
<driver status="preliminary" color="good" sound="good" palettesize="2080"/>
</game>
<game name="mp_gaxe2" romof="megaplay">
<description>MegaPlay: Golden Axe 2</description>
<description>MegaPlay - Golden Axe 2</description>
<year>1993</year>
<manufacturer>Sega</manufacturer>
<biosset name="ver1" description="Megaplay Bios (Ver. 1)" default="yes"/>
Expand Down Expand Up @@ -330835,7 +330837,7 @@
<rom name="epr12664.20" size="32768" crc="f71e9526" sha1="1c7887541d02c41426992d17f8e3db9e03975953" region="user1" offset="0"/>
</game>
<game runnable="no" name="megaplay">
<description>MegaPlay: Bios</description>
<description>MegaPlay - Bios</description>
<year>1993</year>
<manufacturer>Sega</manufacturer>
<biosset name="ver1" description="Megaplay Bios (Ver. 1)" default="yes"/>
Expand Down
2 changes: 1 addition & 1 deletion src/drivers/xevious.c
Expand Up @@ -1046,7 +1046,7 @@ static MACHINE_DRIVER_START( xevios )

/* sound hardware */
MDRV_SOUND_ADD(NAMCO, namco_interface)
MDRV_SOUND_ADD(SAMPLES, xevios_samples_interface)
MDRV_SOUND_ADD(SAMPLES, samples_interface)
MACHINE_DRIVER_END


Expand Down