From a231fd4f22a3ec05114c9cd52792dfe2ca7ee3b6 Mon Sep 17 00:00:00 2001 From: Stenzek Date: Sun, 21 Jan 2024 22:16:29 +1000 Subject: [PATCH] Settings: Fix Match Window on Android --- src/core/settings.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/core/settings.cpp b/src/core/settings.cpp index cc9b94aaf..2a4577ad1 100644 --- a/src/core/settings.cpp +++ b/src/core/settings.cpp @@ -1129,9 +1129,15 @@ const char* Settings::GetDisplayCropModeDisplayName(DisplayCropMode crop_mode) } static constexpr const std::array s_display_aspect_ratio_names = { +#ifndef __ANDROID__ TRANSLATE_NOOP("DisplayAspectRatio", "Auto (Game Native)"), TRANSLATE_NOOP("DisplayAspectRatio", "Stretch To Fill"), TRANSLATE_NOOP("DisplayAspectRatio", "Custom"), +#else + "Auto (Game Native)", + "Auto (Match Window)", + "Custom", +#endif "4:3", "16:9", "19:9",