From 6c78cad77d3413c8dc5db70b77f0dec81d0d383c Mon Sep 17 00:00:00 2001 From: Leon Styhre Date: Tue, 19 Dec 2023 18:41:35 +0100 Subject: [PATCH] Added support for more extreme vertical resolution than previously allowed --- es-app/src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/es-app/src/main.cpp b/es-app/src/main.cpp index 9091a3e99..8648fafa4 100644 --- a/es-app/src/main.cpp +++ b/es-app/src/main.cpp @@ -243,7 +243,7 @@ bool parseArguments(const std::vector& arguments) const int width {stoi(arguments[i + 1])}; const int height {stoi(arguments[i + 2])}; if (width < 224 || height < 224 || width > 7680 || height > 7680 || - height < width / 4 || width < height / 2) { + height < width / 4 || width < height / 3) { std::cerr << "Error: Unsupported resolution " << width << "x" << height << " supplied\n"; return false;