mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2025-01-18 22:35:39 +00:00
GameSettings: Fix SSAA always showing on Android
This commit is contained in:
parent
fa03038cef
commit
658184f85f
|
@ -543,7 +543,7 @@ static std::optional<std::string> GetEntryValueForKey(const Entry& entry, const
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
return StringUtil::StdStringFromFormat("%u%s", entry.gpu_multisamples.value(),
|
return StringUtil::StdStringFromFormat("%u%s", entry.gpu_multisamples.value(),
|
||||||
entry.gpu_multisamples.value_or(false) ? "-ssaa" : "");
|
entry.gpu_per_sample_shading.value_or(false) ? "-ssaa" : "");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if (key == "GPUTrueColor")
|
else if (key == "GPUTrueColor")
|
||||||
|
|
Loading…
Reference in a new issue