diff options
Diffstat (limited to 'src/emu/sound/sn76496.c')
-rw-r--r-- | src/emu/sound/sn76496.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/sound/sn76496.c b/src/emu/sound/sn76496.c index 06f8d9ff7b8..ed17e66403c 100644 --- a/src/emu/sound/sn76496.c +++ b/src/emu/sound/sn76496.c @@ -215,7 +215,7 @@ static STREAM_UPDATE( SN76496Update ) int i; sn76496_state *R = (sn76496_state *)param; stream_sample_t *lbuffer = outputs[0]; - stream_sample_t *rbuffer = outputs[1]; + stream_sample_t *rbuffer = (R->Stereo)?outputs[1]:NULL; while (samples > 0) { |