From a9b061f8f997c464c92fffcd58e5ba0487931842 Mon Sep 17 00:00:00 2001 From: Colby Klein Date: Sat, 8 Aug 2015 14:12:45 -0700 Subject: [PATCH] Remove hard-coded 480 for high res textures. Now it reads Common::ScreenHeight from the theme like it should. --- src/StepMania.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/StepMania.cpp b/src/StepMania.cpp index 076e0da850..7553eeca1f 100644 --- a/src/StepMania.cpp +++ b/src/StepMania.cpp @@ -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;