summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/gcpinbal.cpp
diff options
context:
space:
mode:
author hap <happppp@users.noreply.github.com>2018-01-26 15:37:44 +0100
committer hap <happppp@users.noreply.github.com>2018-01-26 15:37:44 +0100
commitadd0c3b9e7149bd6b6a390d1adfae60a56428aba (patch)
tree57446100b26fcd92372356b6a217eb122e17aeae /src/mame/drivers/gcpinbal.cpp
parentb07ba89294ad8384a8ad893e032d1c853e6fd06c (diff)
search-replace .0_?Hz_XTAL to _?Hz_XTAL (nw)
Diffstat (limited to 'src/mame/drivers/gcpinbal.cpp')
-rw-r--r--src/mame/drivers/gcpinbal.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/gcpinbal.cpp b/src/mame/drivers/gcpinbal.cpp
index 419adf3062d..d1f1960c060 100644
--- a/src/mame/drivers/gcpinbal.cpp
+++ b/src/mame/drivers/gcpinbal.cpp
@@ -452,7 +452,7 @@ void gcpinbal_state::machine_reset()
MACHINE_CONFIG_START(gcpinbal_state::gcpinbal)
/* basic machine hardware */
- MCFG_CPU_ADD("maincpu", M68000, 32.0_MHz_XTAL/2) /* 16 MHz */
+ MCFG_CPU_ADD("maincpu", M68000, 32_MHz_XTAL/2) /* 16 MHz */
MCFG_CPU_PROGRAM_MAP(gcpinbal_map)
MCFG_CPU_VBLANK_INT_DRIVER("screen", gcpinbal_state, gcpinbal_interrupt)
@@ -485,7 +485,7 @@ MACHINE_CONFIG_START(gcpinbal_state::gcpinbal)
MCFG_DEVICE_ADD("adpcm_select", HCT157, 0)
MCFG_74157_OUT_CB(DEVWRITE8("msm", msm6585_device, data_w))
- MCFG_SOUND_ADD("msm", MSM6585, 640.0_kHz_XTAL)
+ MCFG_SOUND_ADD("msm", MSM6585, 640_kHz_XTAL)
MCFG_MSM6585_VCK_CALLBACK(WRITELINE(gcpinbal_state, gcp_adpcm_int))
MCFG_MSM6585_PRESCALER_SELECTOR(S40) /* 16 kHz */
MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 1.0)