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;