mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Minor fix
This commit is contained in:
parent
6007f54808
commit
3397703bb7
1 changed files with 1 additions and 2 deletions
|
@ -1830,8 +1830,6 @@ void DeveloperToolsScreen::CreateViews() {
|
|||
Draw::DrawContext *draw = screenManager()->getDrawContext();
|
||||
|
||||
// Experimental, will move to main graphics settings later.
|
||||
list->Add(new ItemHeader(gr->T("Stereo rendering")));
|
||||
|
||||
bool multiViewSupported = draw->GetDeviceCaps().multiViewSupported;
|
||||
|
||||
auto enableStereo = [=]() -> bool {
|
||||
|
@ -1839,6 +1837,7 @@ void DeveloperToolsScreen::CreateViews() {
|
|||
};
|
||||
|
||||
if (draw->GetDeviceCaps().multiViewSupported) {
|
||||
list->Add(new ItemHeader(gr->T("Stereo rendering")));
|
||||
list->Add(new CheckBox(&g_Config.bStereoRendering, gr->T("Stereo rendering")));
|
||||
std::vector<std::string> stereoShaderNames;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue