Skip to content

Commit

Permalink
rename new option.
Browse files Browse the repository at this point in the history
  • Loading branch information
LunaMoo committed Sep 14, 2018
1 parent 7e6b227 commit 05b92c6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions UI/GameSettingsScreen.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1381,8 +1381,8 @@ void OtherSettingsScreen::CreateViews() {
list->SetSpacing(0);

list->Add(new ItemHeader(sy->T("Settings that should not be changed by most users")));
PopupSliderChoice *workerThreads = list->Add(new PopupSliderChoice(&g_Config.iNumWorkerThreads, 1, 128, gr->T("Manually set number of threads(important for software rendering and texture scaling)"), 1, screenManager(), gr->T("Threads")));
workerThreads->SetFormat("Threads");
PopupSliderChoice *workerThreads = list->Add(new PopupSliderChoice(&g_Config.iNumWorkerThreads, 1, 128, gr->T("Number of threads(software rendering/texture scaling)"), 1, screenManager(), gr->T("Threads")));
workerThreads->SetFormat("%i Threads");
list->Add(new CheckBox(&g_Config.bEncryptSave, sy->T("Encrypt savedata")));
list->Add(new CheckBox(&g_Config.bSavedataUpgrade, sy->T("Allow savedata with wrong encryption(unsafe workaround for outdated PSP savedata)")));
list->Add(new CheckBox(&g_Config.bFrameSkipUnthrottle, gr->T("Frameskip unthrottle(good for CPU benchmark)")));
Expand Down

0 comments on commit 05b92c6

Please sign in to comment.