From 6d1230fcf9b94c314a7e59352406c367f52c5454 Mon Sep 17 00:00:00 2001 From: Storm Dragon Date: Fri, 11 Mar 2022 13:08:45 -0500 Subject: [PATCH] the -d flag now launches the installer, which is more useful for debugging games. --- audiogame-manager.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/audiogame-manager.sh b/audiogame-manager.sh index c72ba5f..e5852a7 100755 --- a/audiogame-manager.sh +++ b/audiogame-manager.sh @@ -1045,7 +1045,7 @@ declare -A command=( [c]="Check your system for necessary components." [C]="Clear the cache. All game installers will be deleted." [D]="Create desktop shortcut. You can launch audiogame-manager from the desktop or applications menu." - [d]="Debug mode, wine will be much more verbose when games are launched with this flag." + [d]="Debug mode, wine will be much more verbose when games are installed with this flag." [h]="This help screen." [i]="Install games." [I:]="Noninteractive game installation." @@ -1069,7 +1069,7 @@ while getopts "${args}" i ; do D) desktop_launcher;; d) unset WINEDEBUG - game_launcher + game_installer ;; h) help;; i) game_installer;;