Slightly shorten a long line

This commit is contained in:
Chris Robinson
2014-02-02 16:11:53 -08:00
parent 7c4339c195
commit 926ecc2dbe
+1 -1
View File
@@ -776,7 +776,7 @@ static void FSynth_process(FSynth *self, ALuint SamplesToDo, ALfloat (*restrict
else
{
/* Figure out how many samples until the next event. */
tonext = (ALint)(((diff * synth->SampleRate)+(MIDI_CLOCK_RES-1)) / MIDI_CLOCK_RES);
tonext = (ALint)((diff*synth->SampleRate + (MIDI_CLOCK_RES-1)) / MIDI_CLOCK_RES);
tonext -= total;
}