mirror of
https://github.com/holub/mame
synced 2025-04-25 17:56:43 +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];
|
||||
for (i = 0; i < samples; i++)
|
||||
{
|
||||
*dest1++ = limit(8*(*lmix++));
|
||||
*dest2++ = limit(8*(*rmix++));
|
||||
INT32 val;
|
||||
|
||||
val = 8 * (*lmix++);
|
||||
*dest1++ = limit(val);
|
||||
val = 8 * (*rmix++);
|
||||
*dest2++ = limit(val);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user