Skip to content

Commit

Permalink
Merge pull request #6238 from lioncash/shader-str
Browse files Browse the repository at this point in the history
DolphinWX/Main: Fix shader compilation dialog translations
  • Loading branch information
leoetlino committed Dec 4, 2017
2 parents 30b5cbc + ed2be3b commit d1ef62c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Core/DolphinWX/Main.cpp
Expand Up @@ -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);
Expand Down

0 comments on commit d1ef62c

Please sign in to comment.