Merge pull request #6238 from lioncash/shader-str

DolphinWX/Main: Fix shader compilation dialog translations
This commit is contained in:
Leo Lam 2017-12-04 12:03:25 +01:00 committed by GitHub
commit d1ef62cc5a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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);