Fix issue with choosing max polyphony

pull/690/head
Kevin 11 months ago
parent 7c50e8036e
commit e08d1da40d
  1. 2
      src/config.cpp

@ -45,7 +45,7 @@ void CConfig::Load (void)
{ {
m_nToneGenerators = DefToneGenerators; m_nToneGenerators = DefToneGenerators;
} }
if (m_nPolyphony >= MaxNotes) if (m_nPolyphony > MaxNotes)
{ {
m_nPolyphony = DefaultNotes; m_nPolyphony = DefaultNotes;
} }

Loading…
Cancel
Save