mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-03 22:58:50 +00:00
Update string comparison to handle QString and std::string correctly
This commit is contained in:
parent
3156e18f14
commit
964e2e87fc
1 changed files with 1 additions and 1 deletions
|
@ -378,7 +378,7 @@ void EnhancementsWidget::ShaderChanged()
|
||||||
{
|
{
|
||||||
auto shader = ReadSetting(Config::GFX_ENHANCE_POST_SHADER);
|
auto shader = ReadSetting(Config::GFX_ENHANCE_POST_SHADER);
|
||||||
|
|
||||||
if (shader == tr("(off)") || shader == "")
|
if (shader == tr("(off)").toStdString() || shader == "")
|
||||||
{
|
{
|
||||||
shader = "";
|
shader = "";
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue