mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Update native, add checkbox for sw renderer to developer settings
This commit is contained in:
parent
b89af62143
commit
dd07665814
2 changed files with 3 additions and 1 deletions
|
@ -404,11 +404,13 @@ void DeveloperToolsScreen::CreateViews() {
|
|||
|
||||
I18NCategory *g = GetI18NCategory("General");
|
||||
I18NCategory *d = GetI18NCategory("Developer");
|
||||
I18NCategory *gs = GetI18NCategory("Graphics");
|
||||
I18NCategory *a = GetI18NCategory("Audio");
|
||||
|
||||
LinearLayout *list = root_->Add(new LinearLayout(ORIENT_VERTICAL, new LinearLayoutParams(1.0f)));
|
||||
list->Add(new ItemHeader(g->T("General")));
|
||||
list->Add(new Choice(d->T("Run CPU Tests")))->OnClick.Handle(this, &DeveloperToolsScreen::OnRunCPUTests);
|
||||
list->Add(new CheckBox(&g_Config.bSoftwareRendering, gs->T("Software Rendering", "Software Rendering (experimental)")));
|
||||
list->Add(new CheckBox(&enableLogging_, d->T("Enable Debug Logging")));
|
||||
list->Add(new Choice(g->T("Back")))->OnClick.Handle(this, &DeveloperToolsScreen::OnBack);
|
||||
}
|
||||
|
|
2
native
2
native
|
@ -1 +1 @@
|
|||
Subproject commit 17996ccd4c133e2f930e9b7141875a6ed5e24558
|
||||
Subproject commit 1effa138697927d5e74b40bd5f26133c6a7bc0d2
|
Loading…
Add table
Reference in a new issue