mirror of https://github.com/PCSX2/pcsx2.git
common-wx3: fix nasty bug between overload function of pxOnAssert
This commit is contained in:
parent
ac38ebbf29
commit
18a6403852
|
@ -143,7 +143,7 @@ __fi void pxOnAssert( const DiagnosticOrigin& origin, const char* msg)
|
|||
#if wxMAJOR_VERSION >= 3
|
||||
__fi void pxOnAssert( const DiagnosticOrigin& origin, const wxString& msg)
|
||||
{
|
||||
pxOnAssert( origin, WX_STR(msg) ); // wc_str ???
|
||||
pxOnAssert( origin, msg.wc_str() );
|
||||
}
|
||||
|
||||
__fi void pxOnAssert( const DiagnosticOrigin& origin, const FastFormatUnicode& msg)
|
||||
|
|
Loading…
Reference in New Issue