mirror of https://github.com/PCSX2/pcsx2.git
linux compilation fix
git-svn-id: http://pcsx2.googlecode.com/svn/trunk@4492 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
42fe45e66a
commit
c2266c3edc
|
@ -224,7 +224,8 @@ void RecentIsoManager::AppStatusEvent_OnUiSettingsLoadSave( const AppSettingsEve
|
|||
int cnt = m_Items.size();
|
||||
for( int i=0; i<cnt; ++i )
|
||||
{
|
||||
ini.Entry( pxsFmt( L"Filename%02d", i ), wxFileName(m_Items[i].Filename), wxFileName(L""), IsPortable());
|
||||
wxFileName item_filename = wxFileName(m_Items[i].Filename);
|
||||
ini.Entry( pxsFmt( L"Filename%02d", i ), item_filename, wxFileName(L""), IsPortable());
|
||||
}
|
||||
|
||||
ini.GetConfig().SetRecordDefaults( true );
|
||||
|
|
Loading…
Reference in New Issue