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:
Jake.Stine 2009-09-01 09:34:51 +00:00
parent 0a4b4e31bf
commit 4307e18e71
3 changed files with 2 additions and 4 deletions

View File

@ -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"

View File

@ -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"

View File

@ -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;