mirror of https://github.com/PCSX2/pcsx2.git
utilities: Fix compile when using --enable-stl wxWidgets builds
Regression introduced in 93d5b52df3
.
This commit is contained in:
parent
f3e78b8267
commit
55155ca7f1
|
@ -114,9 +114,9 @@ DEVASSERT_INLINE void pxOnAssert(const DiagnosticOrigin &origin, const wxString
|
|||
|
||||
if (pxDoAssert == NULL) {
|
||||
// Note: Format uses MSVC's syntax for output window hotlinking.
|
||||
trapit = pxAssertImpl_LogIt(origin, msg);
|
||||
trapit = pxAssertImpl_LogIt(origin, msg.wc_str());
|
||||
} else {
|
||||
trapit = pxDoAssert(origin, msg);
|
||||
trapit = pxDoAssert(origin, msg.wc_str());
|
||||
}
|
||||
|
||||
if (trapit) {
|
||||
|
|
Loading…
Reference in New Issue