GS-wx: Add show settings and show inputs options to osd.

This commit is contained in:
lightningterror 2022-10-18 18:26:32 +02:00
parent 4fe1217a69
commit f2b172738f
2 changed files with 4 additions and 0 deletions

View File

@ -1460,6 +1460,8 @@ void GSApp::Init()
m_default_configuration["OsdShowResolution"] = "0";
m_default_configuration["OsdShowGSStats"] = "0";
m_default_configuration["OsdShowIndicators"] = "1";
m_default_configuration["OsdShowSettings"] = "0";
m_default_configuration["OsdShowInputs"] = "0";
m_default_configuration["OsdScale"] = "100";
m_default_configuration["override_GL_ARB_copy_image"] = "-1";
m_default_configuration["override_GL_ARB_clip_control"] = "-1";

View File

@ -532,6 +532,8 @@ OSDTab::OSDTab(wxWindow* parent)
m_ui.addCheckBox(log_grid, "Show Resolution", "OsdShowResolution", -1);
m_ui.addCheckBox(log_grid, "Show Statistics", "OsdShowGSStats", -1);
m_ui.addCheckBox(log_grid, "Show Indicators", "OsdShowIndicators", -1);
m_ui.addCheckBox(log_grid, "Show Settings", "OsdShowSettings", -1);
m_ui.addCheckBox(log_grid, "Show Inputs", "OsdShowInputs", -1);
log_box->Add(log_grid, wxSizerFlags().Expand());
tab_box->Add(log_box.outer, wxSizerFlags().Expand());