From cc004a45f18b7811ecae407f4c7f04e0acfb0ad8 Mon Sep 17 00:00:00 2001 From: Leon Styhre Date: Thu, 19 May 2022 17:24:12 +0200 Subject: [PATCH] Renamed the --create-systemdirs command line option to --create-system-dirs --- es-app/src/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/es-app/src/main.cpp b/es-app/src/main.cpp index 3965e100b..7838446ed 100644 --- a/es-app/src/main.cpp +++ b/es-app/src/main.cpp @@ -351,7 +351,7 @@ bool parseArgs(int argc, char* argv[]) else if (strcmp(argv[i], "--force-input-config") == 0) { forceInputConfig = true; } - else if (strcmp(argv[i], "--create-systemdirs") == 0) { + else if (strcmp(argv[i], "--create-system-dirs") == 0) { createSystemDirectories = true; } else if (strcmp(argv[i], "--debug") == 0) { @@ -382,7 +382,7 @@ bool parseArgs(int argc, char* argv[]) " --force-kiosk Force the UI mode to Kiosk\n" " --force-kid Force the UI mode to Kid\n" " --force-input-config Force configuration of input device\n" -" --create-systemdirs Create game system directories\n" +" --create-system-dirs Create game system directories\n" " --home [path] Directory to use as home path\n" " --debug Print debug information\n" " --version, -v Display version information\n"