From c10da0232e28c427c06570b4420f3a1514396614 Mon Sep 17 00:00:00 2001 From: Nekokabu Date: Thu, 26 Nov 2015 23:03:46 +0900 Subject: [PATCH] Update Settings Config.cpp Fixed Dialog title in RDB Edit Mode --- Source/Project64/User Interface/Settings Config.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Project64/User Interface/Settings Config.cpp b/Source/Project64/User Interface/Settings Config.cpp index 5b29fe923..7e691b586 100644 --- a/Source/Project64/User Interface/Settings Config.cpp +++ b/Source/Project64/User Interface/Settings Config.cpp @@ -112,7 +112,7 @@ LRESULT CSettingConfig::OnInitDialog(UINT /*uMsg*/, WPARAM /*wParam*/, LPARAM /* { if (g_Settings->LoadBool(Setting_RdbEditor)) { - SetWindowText(stdstr_f("%s ** RDB Edit Mode **",GS(OPTIONS_TITLE)).c_str()); + SetWindowText(stdstr_f("%ws ** RDB Edit Mode **",GS(OPTIONS_TITLE)).c_str()); } else { ::SetWindowTextW(m_hWnd, GS(OPTIONS_TITLE)); }