From cda3eafe74585495bbb38956efc1ae89246ba572 Mon Sep 17 00:00:00 2001 From: Chris Danford Date: Tue, 7 Apr 2009 02:59:35 +0000 Subject: [PATCH] fix GetHighResolutionTextures --- stepmania/src/StepMania.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stepmania/src/StepMania.cpp b/stepmania/src/StepMania.cpp index 4ddde74f8e..fab0e368b4 100644 --- a/stepmania/src/StepMania.cpp +++ b/stepmania/src/StepMania.cpp @@ -153,8 +153,8 @@ bool StepMania::GetHighResolutionTextures() default: case HighResolutionTextures_Auto: { - const VideoModeParams ¶ms = DISPLAY->GetActualVideoModeParams(); - return params.height > 480; + int height = PREFSMAN->m_iDisplayHeight; + return height > 480; } case HighResolutionTextures_ForceOn: return true;