Merge pull request #10536 from karlforshaw/master

Advise against using -s and -S variables on the command line.
This commit is contained in:
Autechre 2020-04-30 14:59:46 +02:00 committed by GitHub
commit 4198a0d3a8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -26862,8 +26862,8 @@ static void retroarch_print_help(const char *arg0)
"--menu as only argument.\n", sizeof(buf));
#endif
strlcat(buf, " -s, --save=PATH Path for save files (*.srm).\n", sizeof(buf));
strlcat(buf, " -S, --savestate=PATH Path for the save state files (*.state).\n", sizeof(buf));
strlcat(buf, " -s, --save=PATH Path for save files (*.srm). (DEPRECATED, use --appendconfig and savefile_directory)\n", sizeof(buf));
strlcat(buf, " -S, --savestate=PATH Path for the save state files (*.state). (DEPRECATED, use --apendconfig and savestate_directory)\n", sizeof(buf));
strlcat(buf, " --set-shader PATH Path to a shader (preset) that will be loaded each time content is loaded.\n"
" Effectively overrides automatic shader presets.\n"
" An empty argument \"\" will disable automatic shader presets.\n", sizeof(buf));