mirror of
https://github.com/holub/mame
synced 2025-04-26 10:13:37 +03:00
workaround for internal compiler error when using vs2013 64-bit (nw)
This commit is contained in:
parent
22b1da4b2c
commit
51871ba957
@ -331,8 +331,12 @@ void c140_device::sound_stream_update(sound_stream &stream, stream_sample_t **in
|
|||||||
stream_sample_t *dest2 = outputs[1];
|
stream_sample_t *dest2 = outputs[1];
|
||||||
for (i = 0; i < samples; i++)
|
for (i = 0; i < samples; i++)
|
||||||
{
|
{
|
||||||
*dest1++ = limit(8*(*lmix++));
|
INT32 val;
|
||||||
*dest2++ = limit(8*(*rmix++));
|
|
||||||
|
val = 8 * (*lmix++);
|
||||||
|
*dest1++ = limit(val);
|
||||||
|
val = 8 * (*rmix++);
|
||||||
|
*dest2++ = limit(val);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user