1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
|
Description: Switch to wxWidgets 3.2
Comment out what is now a duplicate case value
Bug-Debian: https://bugs.debian.org/1019817
Author: Graham Inggs <ginggs@debian.org>
Last-Update: 2022-10-23
--- a/cmake/SearchForStuff.cmake
+++ b/cmake/SearchForStuff.cmake
@@ -35,7 +35,7 @@
set(wxWidgets_CONFIG_OPTIONS --unicode=yes)
endif()
-list(APPEND wxWidgets_CONFIG_OPTIONS --version=3.0)
+list(APPEND wxWidgets_CONFIG_OPTIONS --version=3.2)
if(GTK3_API AND NOT APPLE)
list(APPEND wxWidgets_CONFIG_OPTIONS --toolkit=gtk3)
@@ -227,4 +227,4 @@
https://gitweb.gentoo.org/proj/gcc-patches.git/commit/?id=275ab714637a64672c6630cfd744af2c70957d5a
Even with that patch, compiling with LTO may still segfault. Use at your own risk!
This text being in a compile log in an open issue may cause it to be closed.")
-endif()
\ No newline at end of file
+endif()
--- a/pcsx2/gui/i18n.cpp
+++ b/pcsx2/gui/i18n.cpp
@@ -37,7 +37,7 @@
{
case wxLANGUAGE_CHINESE: return L"Chinese (Traditional)";
case wxLANGUAGE_CHINESE_TRADITIONAL: return L"Chinese (Traditional)";
- case wxLANGUAGE_CHINESE_TAIWAN: return L"Chinese (Traditional)";
+// case wxLANGUAGE_CHINESE_TAIWAN: return L"Chinese (Traditional)";
case wxLANGUAGE_CHINESE_HONGKONG: return L"Chinese (Traditional, Hong Kong)";
case wxLANGUAGE_CHINESE_MACAU: return L"Chinese (Traditional, Macau)";
}
|