GameSettings: Fix SSAA always showing on Android

This commit is contained in:
Connor McLaughlin 2021-03-14 02:19:51 +10:00
parent fa03038cef
commit 658184f85f
1 changed files with 1 additions and 1 deletions

View File

@ -543,7 +543,7 @@ static std::optional<std::string> GetEntryValueForKey(const Entry& entry, const
else
{
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")