From 355812bcaf0dd96e2d777e4556800bd91296b7c3 Mon Sep 17 00:00:00 2001 From: Michael Date: Wed, 18 Oct 2017 17:08:19 -0700 Subject: [PATCH] Fix 43:18 AR showing for 1440p 21:9 packs --- Source/functions.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Source/functions.php b/Source/functions.php index 5809e976..d801f51b 100644 --- a/Source/functions.php +++ b/Source/functions.php @@ -23,6 +23,9 @@ function get_title($width, $height) { if ($ratio[0] == 64 && $ratio[1] == 27) { // 64:27 is the true ratio, but 21:9 is the common approximation $title = $title . " (21:9)"; + } else if ($ratio[0] == 43 && $ratio[1] == 18) { + // 43:18 is the true ratio for 3440x1440, but 21:9 is the common approximation + $title = $title . " (21:9)"; } else if ($ratio[0] == 8 && $ratio[1] == 5) { // common sense $title = $title . " (16:10)";