mirror of https://github.com/PCSX2/pcsx2.git
pcsx2: Avoid clearing current ISO when not autorunning with an ISO
This commit is contained in:
parent
92b1f3cf6d
commit
620b9b3300
|
@ -503,7 +503,8 @@ bool Pcsx2App::OnInit()
|
||||||
{
|
{
|
||||||
g_Conf->EmuOptions.UseBOOT2Injection = !Startup.NoFastBoot;
|
g_Conf->EmuOptions.UseBOOT2Injection = !Startup.NoFastBoot;
|
||||||
g_Conf->CdvdSource = Startup.CdvdSource;
|
g_Conf->CdvdSource = Startup.CdvdSource;
|
||||||
SysUpdateIsoSrcFile( Startup.IsoFile );
|
if (Startup.CdvdSource == CDVD_SourceType::Iso)
|
||||||
|
SysUpdateIsoSrcFile( Startup.IsoFile );
|
||||||
sApp.SysExecute( Startup.CdvdSource );
|
sApp.SysExecute( Startup.CdvdSource );
|
||||||
}
|
}
|
||||||
else if ( Startup.SysAutoRunElf )
|
else if ( Startup.SysAutoRunElf )
|
||||||
|
|
Loading…
Reference in New Issue