mirror of https://github.com/PCSX2/pcsx2.git
pcsx2: Fix OpenSUSE 13.2 wx3.0 compile
I have no idea why it fails to convert the wxString to a const wxChar *.
This commit is contained in:
parent
7fac189ab3
commit
26de185f54
|
@ -565,7 +565,7 @@ void GSFrame::OnUpdateTitle( wxTimerEvent& evt )
|
|||
gsDest[0] = 0; // No need to set whole array to NULL.
|
||||
GSgetTitleInfo2( gsDest, sizeof(gsDest) );
|
||||
|
||||
const wxChar* limiterStr = templates.LimiterUnlimited;
|
||||
wxString limiterStr = templates.LimiterUnlimited;
|
||||
|
||||
if( g_Conf->EmuOptions.GS.FrameLimitEnable )
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue