diff options
author | 2013-08-01 13:36:40 +0000 | |
---|---|---|
committer | 2013-08-01 13:36:40 +0000 | |
commit | 5c83e128890e38ac8bd9d84f0e474066c459da1d (patch) | |
tree | 6bb1591f80b79d73b7138ce252387a024409986e /src/mess/machine/pc9801_118.c | |
parent | d45c16562b5674ae430e7cfc7be66a33b0b9f5d9 (diff) |
cleaner way (nw)
Diffstat (limited to 'src/mess/machine/pc9801_118.c')
-rw-r--r-- | src/mess/machine/pc9801_118.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mess/machine/pc9801_118.c b/src/mess/machine/pc9801_118.c index 274a0516897..7a93cd9d09c 100644 --- a/src/mess/machine/pc9801_118.c +++ b/src/mess/machine/pc9801_118.c @@ -54,7 +54,7 @@ static const ay8910_interface ay8910_config = static MACHINE_CONFIG_FRAGMENT( pc9801_118_config ) MCFG_SPEAKER_STANDARD_MONO("mono") MCFG_SOUND_ADD("opn3", YM2608, MAIN_CLOCK_X1*4) // actually YMF288, unknown clock / divider - MCFG_YM2608_IRQ_HANDLER(DEVWRITELINE(DEVICE_SELF, pc9801_118_device, pc9801_sound_irq)) + MCFG_YM2608_IRQ_HANDLER(WRITELINE(pc9801_118_device, pc9801_sound_irq)) MCFG_YM2608_AY8910_INTF(&ay8910_config) MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 1.00) MACHINE_CONFIG_END |