From aea9714bd0e36cdfc76c247327687536d8a5da1b Mon Sep 17 00:00:00 2001 From: Margen67 Date: Mon, 23 Jan 2023 01:22:43 -0800 Subject: [PATCH] Make present_safe_area 100 So people stop asking why their games are cropped off. --- src/xenia/ui/presenter.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/xenia/ui/presenter.cc b/src/xenia/ui/presenter.cc index ab28ca4b4..1989ff477 100644 --- a/src/xenia/ui/presenter.cc +++ b/src/xenia/ui/presenter.cc @@ -61,12 +61,12 @@ DEFINE_bool( // is the title-safe area rather than the action-safe area. // 90% is also exactly the fraction of 16:9 height in 16:10. DEFINE_int32( - present_safe_area_x, 90, + present_safe_area_x, 100, "Percentage of the image width that can be kept when presenting to " "maintain aspect ratio without letterboxing or stretching.", "Display"); DEFINE_int32( - present_safe_area_y, 90, + present_safe_area_y, 100, "Percentage of the image height that can be kept when presenting to " "maintain aspect ratio without letterboxing or stretching.", "Display");