summaryrefslogtreecommitdiff
path: root/Source/Core
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2017-12-04 04:26:51 -0500
committerLioncash <mathew1800@gmail.com>2017-12-04 04:33:49 -0500
commited2be3b8e3a032c625dcc5041bcd5c480c8b112e (patch)
tree82abb70ae487bd0f8eb2a4a645f13f7ffc5e89f2 /Source/Core
parent30b5cbcb0267372ee20c8ebeb08e4b16bacf4a7c (diff)
DolphinWX/Main: Fix shader compilation dialog translations
Fixes issue 10685
Diffstat (limited to 'Source/Core')
-rw-r--r--Source/Core/DolphinWX/Main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/DolphinWX/Main.cpp b/Source/Core/DolphinWX/Main.cpp
index fd87aaea8e..07272415f6 100644
--- a/Source/Core/DolphinWX/Main.cpp
+++ b/Source/Core/DolphinWX/Main.cpp
@@ -503,7 +503,7 @@ void Host_YieldToUI()
void Host_UpdateProgressDialog(const char* caption, int position, int total)
{
wxCommandEvent event(wxEVT_HOST_COMMAND, IDM_UPDATE_PROGRESS_DIALOG);
- event.SetString(caption);
+ event.SetString(StrToWxStr(caption));
event.SetInt(position);
event.SetExtraLong(total);
main_frame->GetEventHandler()->AddPendingEvent(event);