mirror of https://github.com/PCSX2/pcsx2.git
GS-wx: Add show settings and show inputs options to osd.
This commit is contained in:
parent
4fe1217a69
commit
f2b172738f
|
@ -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";
|
||||
|
|
|
@ -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());
|
||||
|
|
Loading…
Reference in New Issue