mirror of https://github.com/PCSX2/pcsx2.git
Command line fixes (Issue 331):
* I had incorrectly documented -usecd as -usecdvd (oops) * Skipbios now defaults to OFF is was intended git-svn-id: http://pcsx2.googlecode.com/svn/trunk@1723 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
0a4b4e31bf
commit
4307e18e71
|
@ -97,7 +97,6 @@
|
|||
</Configuration>
|
||||
<Configuration
|
||||
Name="Devel|Win32"
|
||||
IntermediateDirectory="$(ConfigurationName)"
|
||||
ConfigurationType="1"
|
||||
InheritedPropertySheets=".\vsprops\common.vsprops;..\..\..\common\vsprops\BaseProperties.vsprops;..\..\..\common\vsprops\3rdpartyDeps.vsprops;.\vsprops\devbuild.vsprops;..\..\..\common\vsprops\pthreads.vsprops;..\..\..\common\vsprops\CodeGen_Devel.vsprops;..\..\..\common\vsprops\IncrementalLinking.vsprops"
|
||||
UseOfMFC="0"
|
||||
|
@ -178,7 +177,6 @@
|
|||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
IntermediateDirectory="$(ConfigurationName)"
|
||||
ConfigurationType="1"
|
||||
InheritedPropertySheets=".\vsprops\common.vsprops;..\..\..\common\vsprops\BaseProperties.vsprops;..\..\..\common\vsprops\3rdpartyDeps.vsprops;..\..\..\common\vsprops\pthreads.vsprops;..\..\..\common\vsprops\CodeGen_Release.vsprops"
|
||||
UseOfMFC="0"
|
||||
|
|
|
@ -74,7 +74,7 @@ static const char* phelpmsg =
|
|||
"\t-skipbios {emulator will skip standard BIOS splash screens; does not apply to ELF}\n"
|
||||
"\t-elf [file] {executes an ELF image}\n"
|
||||
"\t-nodisc {use this to boot into the PS2 system menu}\n"
|
||||
"\t-usecdvd {auto-boots from the configured CDVD plugin (ignores cdimage parameter)}\n"
|
||||
"\t-usecd {auto-boots from the configured CDVD plugin (ignores cdimage parameter)}\n"
|
||||
|
||||
"\n\n"
|
||||
|
||||
|
|
|
@ -73,7 +73,7 @@ int ParseCommandLine( int tokenCount, TCHAR *const *const tokens )
|
|||
g_Startup.ElfFile = NULL;
|
||||
|
||||
g_Startup.StartupMode = Startup_FromCDVD;
|
||||
g_Startup.SkipBios = true;
|
||||
g_Startup.SkipBios = false;
|
||||
g_Startup.CdvdSource = CDVDsrc_Plugin;
|
||||
|
||||
bool _legacy_ForceElfLoad = false;
|
||||
|
|
Loading…
Reference in New Issue