mirror of https://github.com/PCSX2/pcsx2.git
CDVD: Add detection for PS2 Linux Disc 2
This commit is contained in:
parent
18fdfc26aa
commit
32085dc009
|
@ -107,6 +107,16 @@ static int CheckDiskTypeFS(int baseType)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// PS2 Linux disc 2, doesn't have a System.CNF or a normal ELF
|
||||||
|
try
|
||||||
|
{
|
||||||
|
IsoFile file(rootdir, L"P2L_0100.02;1");
|
||||||
|
return CDVD_TYPE_PS2DVD;
|
||||||
|
}
|
||||||
|
catch (Exception::FileNotFound&)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
IsoFile file(rootdir, L"PSX.EXE;1");
|
IsoFile file(rootdir, L"PSX.EXE;1");
|
||||||
|
|
Loading…
Reference in New Issue