summaryrefslogtreecommitdiffstatshomepage
path: root/src
diff options
context:
space:
mode:
author David Haywood <mamehaze@users.noreply.github.com>2016-04-04 01:16:25 +0100
committer David Haywood <mamehaze@users.noreply.github.com>2016-04-04 01:16:25 +0100
commita05af7500f1f6ddcad7b4bd0159bee26b544358b (patch)
tree5ee83c69eefe6a5f3bea93767fd36d987c62fb4d /src
parent716ef200002391663539674a38b90a9aa0535b22 (diff)
init palette to black (nw)
Diffstat (limited to 'src')
-rw-r--r--src/mame/drivers/himesiki.cpp9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/mame/drivers/himesiki.cpp b/src/mame/drivers/himesiki.cpp
index f11bcd7be0c..1ebc2696426 100644
--- a/src/mame/drivers/himesiki.cpp
+++ b/src/mame/drivers/himesiki.cpp
@@ -9,9 +9,10 @@ Android (C) 198? Nasco
*****************************************************************************/
-// Note, another VERY different version of Android also exists, see https://www.youtube.com/watch?v=5rtqZqMBACI (uploaded by Chris Hardy)
-// it is unclear if that version is on the same hardware as this
// Android uses PCBS MK-P102 and MK-P101 ONLY, there is no MK-P103 (extra sprites used on Himeshikibu)
+// Real hardware video of parent set can be seen at https://www.youtube.com/watch?v=5rtqZqMBACI (uploaded by Chris Hardy)
+// for some reason music fails to play the 2nd attract loop in MAME?
+
/*
@@ -449,13 +450,13 @@ static MACHINE_CONFIG_START( himesiki, himesiki_state )
MCFG_SCREEN_PALETTE("palette")
MCFG_GFXDECODE_ADD("gfxdecode", "palette", himesiki)
- MCFG_PALETTE_ADD("palette", 1024)
+ MCFG_PALETTE_ADD_INIT_BLACK("palette", 1024)
MCFG_PALETTE_FORMAT(xRRRRRGGGGGBBBBB)
/* sound hardware */
MCFG_SPEAKER_STANDARD_MONO("mono")
- MCFG_SOUND_ADD("ym2203", YM2203, MCLK/4)
+ MCFG_SOUND_ADD("ym2203", YM2203, CLK2/4) // ??
MCFG_YM2203_IRQ_HANDLER(INPUTLINE("sub", 0))
MCFG_SOUND_ROUTE(0, "mono", 0.10)
MCFG_SOUND_ROUTE(1, "mono", 0.10)