mirror of
https://github.com/holub/mame
synced 2025-05-30 17:41:47 +03:00
Fix crash, nw
This commit is contained in:
parent
9cfc7c1ee4
commit
5350e1ad31
@ -104,6 +104,7 @@ also has a DSP;
|
||||
#include "machine/stvcd.h"
|
||||
#include "machine/scudsp.h"
|
||||
#include "sound/scsp.h"
|
||||
#include "sound/cdda.h"
|
||||
#include "machine/stvprot.h"
|
||||
#include "includes/stv.h"
|
||||
#include "imagedev/chd_cd.h"
|
||||
@ -2756,6 +2757,10 @@ static MACHINE_CONFIG_START( saturn, saturn_state )
|
||||
MCFG_SOUND_ROUTE(0, "lspeaker", 1.0)
|
||||
MCFG_SOUND_ROUTE(1, "rspeaker", 1.0)
|
||||
|
||||
MCFG_SOUND_ADD("cdda", CDDA, 0)
|
||||
MCFG_SOUND_ROUTE(0, "lspeaker", 1.0)
|
||||
MCFG_SOUND_ROUTE(1, "rspeaker", 1.0)
|
||||
|
||||
MCFG_CDROM_ADD( "cdrom" )
|
||||
MCFG_CARTSLOT_ADD("cart")
|
||||
MACHINE_CONFIG_END
|
||||
@ -2802,6 +2807,10 @@ static MACHINE_CONFIG_START( stv, saturn_state )
|
||||
MCFG_SOUND_CONFIG(scsp_config)
|
||||
MCFG_SOUND_ROUTE(0, "lspeaker", 1.0)
|
||||
MCFG_SOUND_ROUTE(1, "rspeaker", 1.0)
|
||||
|
||||
MCFG_SOUND_ADD("cdda", CDDA, 0)
|
||||
MCFG_SOUND_ROUTE(0, "lspeaker", 1.0)
|
||||
MCFG_SOUND_ROUTE(1, "rspeaker", 1.0)
|
||||
MACHINE_CONFIG_END
|
||||
|
||||
struct stv_cart_region
|
||||
|
Loading…
Reference in New Issue
Block a user