mirror of https://github.com/PCSX2/pcsx2.git
gsdx:windows: Fix incorrect printf specifier
This commit is contained in:
parent
157add3eea
commit
a6fac1e009
|
@ -34,7 +34,7 @@ static void win_error(const wchar_t* msg, bool fatal = true)
|
||||||
MessageBox(NULL, msg, L"ERROR", MB_OK | MB_ICONEXCLAMATION);
|
MessageBox(NULL, msg, L"ERROR", MB_OK | MB_ICONEXCLAMATION);
|
||||||
throw GSDXRecoverableError();
|
throw GSDXRecoverableError();
|
||||||
} else {
|
} else {
|
||||||
fprintf(stderr, "ERROR:%s\n", msg);
|
fprintf(stderr, "ERROR:%ls\n", msg);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue