gsdx:windows: Fix incorrect printf specifier

This commit is contained in:
Jonathan Li 2021-03-24 03:36:39 +00:00
parent 157add3eea
commit a6fac1e009
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ static void win_error(const wchar_t* msg, bool fatal = true)
MessageBox(NULL, msg, L"ERROR", MB_OK | MB_ICONEXCLAMATION);
throw GSDXRecoverableError();
} else {
fprintf(stderr, "ERROR:%s\n", msg);
fprintf(stderr, "ERROR:%ls\n", msg);
}
}