From 4776fdc130f95f7bd4af556f0520698fa03be76d Mon Sep 17 00:00:00 2001 From: Michael Maltese Date: Sat, 22 Jul 2017 16:25:14 -0700 Subject: [PATCH] Qt/AboutDialog: remove literal UTF-8 characters --- Source/Core/DolphinQt2/AboutDialog.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Core/DolphinQt2/AboutDialog.cpp b/Source/Core/DolphinQt2/AboutDialog.cpp index 9c237e8eea..a1eb297c30 100644 --- a/Source/Core/DolphinQt2/AboutDialog.cpp +++ b/Source/Core/DolphinQt2/AboutDialog.cpp @@ -54,8 +54,8 @@ AboutDialog::AboutDialog(QWidget* parent) : QDialog(parent) text_label->setOpenExternalLinks(true); QLabel* copyright = - new QLabel(tr("© 2003-%1 Dolphin Team. “GameCube” and “Wii” are" - " trademarks of Nintendo. Dolphin is not affiliated with Nintendo in any way.") + new QLabel(tr("\u00A9 2003-%1 Dolphin Team. \u201cGameCubeu201d and \u201cWiiu201d are " + "trademarks of Nintendo. Dolphin is not affiliated with Nintendo in any way.") .arg(QStringLiteral(__DATE__).right(4))); QLabel* logo = new QLabel();