From c6abc08b5ffb9d4f77a7bc923ffa05d77281509f Mon Sep 17 00:00:00 2001 From: lightningterror Date: Sun, 18 Nov 2018 21:15:29 +0100 Subject: [PATCH] PCSX2: Correct FMVAspectRatioSwitchNames ini labels. Small follow up correction from #2690, the ini options were inverted. --- pcsx2/gui/AppConfig.cpp | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/pcsx2/gui/AppConfig.cpp b/pcsx2/gui/AppConfig.cpp index 6b46872545..44b66f24db 100644 --- a/pcsx2/gui/AppConfig.cpp +++ b/pcsx2/gui/AppConfig.cpp @@ -882,10 +882,9 @@ void AppConfig::GSWindowOptions::LoadSave( IniInterface& ini ) static const wxChar* FMVAspectRatioSwitchNames[] = { - // FIXME: fmv_aspect_ratio_switch_labels[] is inverted - L"Off", // Standard (4:3) - L"4:3", // Widescreen (16:9) - L"16:9", // Off + L"4:3", + L"16:9", + L"Off", // WARNING: array must be NULL terminated to compute it size NULL };