Skip to content

Commit

Permalink
Fix issue with choosing max polyphony
Browse files Browse the repository at this point in the history
  • Loading branch information
diyelectromusic committed Jul 21, 2024
1 parent 7c50e80 commit e08d1da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/config.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ void CConfig::Load (void)
{
m_nToneGenerators = DefToneGenerators;
}
if (m_nPolyphony >= MaxNotes)
if (m_nPolyphony > MaxNotes)
{
m_nPolyphony = DefaultNotes;
}
Expand Down

0 comments on commit e08d1da

Please sign in to comment.