File 0012-fix-unicode-string-and-add-myself.patch of Package wangemu
From 803027b264195edee4f6dcbf5f9cfde056df2f30 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Klaus=20K=C3=A4mpf?= <kkaempf@gmail.com>
Date: Tue, 14 Oct 2025 17:37:49 +0200
Subject: [PATCH 12/12] fix unicode string (and add myself)
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Signed-off-by: Klaus Kämpf <kkaempf@gmail.com>
---
src/UiMyAboutDlg.cpp | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/src/UiMyAboutDlg.cpp b/src/UiMyAboutDlg.cpp
index dfe97da..d24748c 100644
--- a/src/UiMyAboutDlg.cpp
+++ b/src/UiMyAboutDlg.cpp
@@ -91,7 +91,7 @@ MyAboutDlg::MyAboutDlg(wxWindow *parent) :
top_sizer->AddSpacer(8);
MyStaticText *thanks = new MyStaticText(this, wxID_ANY,
- "Mike Bahia\n"
+ wxString::FromUTF8("Mike Bahia\n"
"Max Blomme\n"
"Eilert Brinkmeyer\n"
"Carl Coffman\n"
@@ -99,7 +99,8 @@ MyAboutDlg::MyAboutDlg(wxWindow *parent) :
"Paul Szudzik\n"
"Smokey Thompson\n"
"Jan Van de Veen\n"
- "Alexander Demin (i8080 model)"
+ "Alexander Demin (i8080 model)\n"
+ "Klaus K\u00e4mpf (Linux port)")
);
top_sizer->Add(thanks, 0, wxLEFT | wxRIGHT, left_indent);
--
2.51.0