Settings: Fix Match Window on Android

This commit is contained in:
Stenzek 2024-01-21 22:16:29 +10:00
parent b9f7900e8c
commit a231fd4f22
No known key found for this signature in database
1 changed files with 6 additions and 0 deletions

View File

@ -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",