mirror of https://github.com/PCSX2/pcsx2.git
disc image support bugfix for games that have non-conforming SYSTEM.CNF contents (invalid or missing ISO filesystem version numbers, typically specified as ';1' after the filename).
git-svn-id: http://pcsx2.googlecode.com/svn/trunk@3981 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
5e2724bdc3
commit
4eab3c5899
|
@ -324,8 +324,8 @@ static __fi ElfObject* loadElf( const wxString filename )
|
|||
Console.WriteLn( Color_Blue, "(LoadELF) Non-conforming version suffix detected and replaced." );
|
||||
|
||||
IsoFSCDVD isofs;
|
||||
IsoFile file(isofs, filename);
|
||||
return new ElfObject(filename, file);
|
||||
IsoFile file(isofs, fixedname);
|
||||
return new ElfObject(fixedname, file);
|
||||
}
|
||||
|
||||
static __fi void _reloadElfInfo(wxString elfpath)
|
||||
|
|
Loading…
Reference in New Issue