adjust tooltip

This commit is contained in:
goeiecool9999 2025-11-14 09:39:39 +01:00
parent 42cbc9ce9a
commit f84b36ae49

View file

@ -406,10 +406,12 @@ wxPanel* GeneralSettings2::AddGraphicsPage(wxNotebook* notebook)
m_userDisplayisSRGB = new wxCheckBox(box, wxID_ANY, "sRGB", wxDefaultPosition, wxDefaultSize); m_userDisplayisSRGB = new wxCheckBox(box, wxID_ANY, "sRGB", wxDefaultPosition, wxDefaultSize);
m_userDisplayisSRGB->SetToolTip(_("Select this if Cemu is being displayed using a piecewise sRGB gamma curve\n" m_userDisplayisSRGB->SetToolTip(_("Select this if Cemu is being displayed using a piecewise sRGB gamma curve\n"
"This is usually only the case if you use an HDR display (with HDR enabled), if you calibrated your SDR display and use Windows 11's Auto Color Management, " "This is typically not the case so you can probably leave this unchecked\n"
"or if you use a display profile with a VCGT tag that targets piecewise sRGB\n" "Exceptions include HDR displays (with HDR enabled), calibrated SDR displays with Windows 11's Auto Color Management enabled, "
"Colors will be more accurate, especially in dark scenes, but this may result in banding or crushed shadows\n" "or using a display profile with a VCGT tag that targets piecewise sRGB\n"
"To avoid this, display Cemu with a pure gamma curve if possible and leave this box unchecked.")); "In these cases when this box is selected cemu will compensate for the piecewise curve to approximate the pure gamma curve of a TV\n"
"Colors will be more accurate, especially in dark scenes, but this may result in banding or crushed shadows, "
"so it is best if you display Cemu with pure gamma and do not use this setting."));
m_userDisplayisSRGB->Bind(wxEVT_CHECKBOX, &GeneralSettings2::OnUserDisplaySRGBSelected, this); m_userDisplayisSRGB->Bind(wxEVT_CHECKBOX, &GeneralSettings2::OnUserDisplaySRGBSelected, this);
srgbCheckBoxSizer->Add(m_userDisplayGamma, 0, wxALL, 5); srgbCheckBoxSizer->Add(m_userDisplayGamma, 0, wxALL, 5);