Remove hard-coded 480 for high res textures.

Now it reads Common::ScreenHeight from the theme like it should.
This commit is contained in:
Colby Klein
2015-08-08 14:12:45 -07:00
parent 0bd06b74e6
commit a9b061f8f9
+1 -1
View File
@@ -176,7 +176,7 @@ bool StepMania::GetHighResolutionTextures()
case HighResolutionTextures_Auto:
{
int height = PREFSMAN->m_iDisplayHeight;
return height > 480;
return height > THEME->GetMetricI("Common", "ScreenHeight");
}
case HighResolutionTextures_ForceOn:
return true;