diff --git a/pcsx2/gui/AppInit.cpp b/pcsx2/gui/AppInit.cpp index 354ede28a6..b3e8d1363c 100644 --- a/pcsx2/gui/AppInit.cpp +++ b/pcsx2/gui/AppInit.cpp @@ -370,6 +370,12 @@ bool Pcsx2App::OnCmdLineParsed( wxCmdLineParser& parser ) Startup.SysAutoRun = true; } + if (parser.Found(L"nodisc")) + { + Startup.CdvdSource = CDVD_SourceType::NoDisc; + Startup.SysAutoRun = true; + } + return true; }