Merge pull request #3690 from aserna3/bikeshedding_bait

[Config UI] add "normal speed" to speed limit 100%
This commit is contained in:
Ryan Houdek 2016-03-05 11:55:06 -05:00
commit 40931f5030
1 changed files with 6 additions and 1 deletions

View File

@ -41,7 +41,12 @@ void GeneralConfigPane::InitializeGUI()
{
m_throttler_array_string.Add(_("Unlimited"));
for (int i = 10; i <= 200; i += 10) // from 10% to 200%
m_throttler_array_string.Add(wxString::Format("%i%%", i));
{
if (i == 100)
m_throttler_array_string.Add(wxString::Format(_("%i%% (Normal Speed)"), i));
else
m_throttler_array_string.Add(wxString::Format(_("%i%%"), i));
}
for (const CPUCore& cpu_core : cpu_cores)
m_cpu_engine_array_string.Add(cpu_core.name);