From e29d4e65bd6fde3d9d15734fbaa1427142c6eaaa Mon Sep 17 00:00:00 2001 From: fgenesis Date: Fri, 21 Sep 2012 02:18:51 +0200 Subject: [PATCH] Allow using super-wide resolutions. Super-tall resolutions break horribly, however. --- Aquaria/DSQ.cpp | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/Aquaria/DSQ.cpp b/Aquaria/DSQ.cpp index 50433be..41e31d2 100644 --- a/Aquaria/DSQ.cpp +++ b/Aquaria/DSQ.cpp @@ -994,11 +994,7 @@ This build is not yet final, and as such there are a couple things lacking. They float asp = float(user.video.resx)/float(user.video.resy); - - if (asp >= 1.0f && asp < 1.8f) - { - } - else + if(asp < 1.0f) { std::ostringstream os; os << "Aspect ratio for resolution [" << user.video.resx << ", " << user.video.resy << "] not supported.";