diff options
author | 2009-01-18 18:22:46 +0000 | |
---|---|---|
committer | 2009-01-18 18:22:46 +0000 | |
commit | 68a0e2c86aa75b8f2aa273421a04625987e64ba2 (patch) | |
tree | 40098bbfc8e80166d730eb82cb333baab884fa3d /src/emu/sound/2203intf.c | |
parent | 0335419d51f78de7963fc879ae508a6e14cdbdc3 (diff) |
Removed redundant config parameter from SND_START.
Diffstat (limited to 'src/emu/sound/2203intf.c')
-rw-r--r-- | src/emu/sound/2203intf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/sound/2203intf.c b/src/emu/sound/2203intf.c index 056cb1065f8..0c98e9ce2a5 100644 --- a/src/emu/sound/2203intf.c +++ b/src/emu/sound/2203intf.c @@ -116,7 +116,7 @@ static SND_START( ym2203 ) }, NULL }; - const ym2203_interface *intf = config ? config : &generic_2203; + const ym2203_interface *intf = device->static_config ? device->static_config : &generic_2203; struct ym2203_info *info; int rate = clock/72; /* ??? */ |