Fix small typo in getPlatformTierNames()

This commit is contained in:
Nick Levesque 2021-01-21 18:45:10 -05:00
parent a1fe046350
commit c3d7e02964

View file

@ -217,7 +217,7 @@ PlatformInfoScriptingInterface::PlatformTier PlatformInfoScriptingInterface::get
}
QStringList PlatformInfoScriptingInterface::getPlatformTierNames() {
static const QStringList platformTierNames = { "UNKNWON", "LOW", "MID", "HIGH" };
static const QStringList platformTierNames = { "UNKNOWN", "LOW", "MID", "HIGH" };
return platformTierNames;
}