diff --git a/Themes/_fallback/Scripts/02 Utilities.lua b/Themes/_fallback/Scripts/02 Utilities.lua index 6dd1645549..da1f966b83 100644 --- a/Themes/_fallback/Scripts/02 Utilities.lua +++ b/Themes/_fallback/Scripts/02 Utilities.lua @@ -352,11 +352,7 @@ end function IsUsingWideScreen() local curAspect = GetScreenAspectRatio() - if math.abs(curAspect-16/9) <= .044 or math.abs(curAspect - 16/10) <= .044 then - return true - else - return false - end + return curAspect > 16/10 - .044 end -- Usage: Pass in an ActorFrame and a string to put in front of every line.