mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-22 04:01:23 +00:00
removing last traces of -w/-l
svn-id: r10765
This commit is contained in:
parent
b3f8b4010b
commit
c3f4bbf34f
2
README
2
README
@ -335,8 +335,6 @@ arguments - see the next section.
|
||||
-t<num> - Set music tempo. 50-200. Default is '100' (percent)
|
||||
-n - Disable subtitles. Use with games that have voice.
|
||||
-y - Set talk speed ('yak option'). Default is '60'
|
||||
-l<file> - Load alternate configuration file
|
||||
-w[file] - Write configuration file
|
||||
-v - Show version information and exit
|
||||
-z - Display list of games
|
||||
-b<num> - Pass number to the boot script (boot param)
|
||||
|
@ -89,14 +89,6 @@ static const char USAGE_STRING[] =
|
||||
" -y - Set text speed (default: 60)\n"
|
||||
#endif
|
||||
"\n"
|
||||
/* FIXME / TODO: config rewrite
|
||||
" -l<file> - Load config file instead of default\n"
|
||||
#if defined(UNIX)
|
||||
" -w[file] - Write to config file [~/.scummvmrc]\n"
|
||||
#else
|
||||
" -w[file] - Write to config file [scummvm.ini]\n"
|
||||
#endif
|
||||
*/
|
||||
" -v - Show version info and exit\n"
|
||||
" -h - Display this text and exit\n"
|
||||
" -z - Display list of supported games\n"
|
||||
@ -359,18 +351,6 @@ void GameDetector::parseCommandLine(int argc, char **argv) {
|
||||
HANDLE_OPT_OPTION();
|
||||
ConfMan.set("joystick_num", (option != NULL) ? (int)strtol(option, 0, 10) : 0);
|
||||
break;
|
||||
/* FIXME / TODO: config rewrite
|
||||
case 'l':
|
||||
HANDLE_OPTION();
|
||||
{
|
||||
Config *newconfig = new Config(option, "scummvm");
|
||||
g_config->merge_config(*newconfig);
|
||||
delete newconfig;
|
||||
updateconfig();
|
||||
break;
|
||||
}
|
||||
break;
|
||||
*/
|
||||
case 'm':
|
||||
HANDLE_OPTION();
|
||||
ConfMan.set("music_volume", (int)strtol(option, 0, 10));
|
||||
@ -416,15 +396,6 @@ void GameDetector::parseCommandLine(int argc, char **argv) {
|
||||
printf("%s\n", gScummVMFullVersion);
|
||||
exit(0);
|
||||
break;
|
||||
/* FIXME / TODO: config rewrite
|
||||
case 'w':
|
||||
_saveconfig = true;
|
||||
g_config->set_writing(true);
|
||||
HANDLE_OPT_OPTION();
|
||||
if (option != NULL)
|
||||
g_config->set_filename(option);
|
||||
break;
|
||||
*/
|
||||
case 'x':
|
||||
HANDLE_OPT_OPTION();
|
||||
ConfMan.set("save_slot", (option != NULL) ? (int)strtol(option, 0, 10) : 0);
|
||||
@ -497,11 +468,6 @@ void GameDetector::parseCommandLine(int argc, char **argv) {
|
||||
}
|
||||
}
|
||||
|
||||
/* FIXME / TODO: config rewrite
|
||||
if (!_gameFileName.isEmpty())
|
||||
ConfMan.flushToDisk();
|
||||
*/
|
||||
|
||||
return;
|
||||
|
||||
ShowHelpAndExit:
|
||||
|
Loading…
x
Reference in New Issue
Block a user