mirror of
https://github.com/ZDoom/fluidsynth.git
synced 2024-11-10 15:01:40 +00:00
Fix single thread build (#410)
Compilation fails if ENABLE_MIXER_THREADS is set to zero, due to a mismatch of parenthesis.
This commit is contained in:
parent
16a112956e
commit
4ea94a324f
1 changed files with 1 additions and 1 deletions
|
@ -1290,8 +1290,8 @@ fluid_rvoice_mixer_render(fluid_rvoice_mixer_t *mixer, int blockcount)
|
|||
fluid_render_loop_multithread(mixer, blockcount);
|
||||
}
|
||||
else
|
||||
{
|
||||
#endif
|
||||
{
|
||||
fluid_render_loop_singlethread(mixer, blockcount);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue