summarylogtreecommitdiffstats
path: root/simcity-2000-gog.sh
diff options
context:
space:
mode:
Diffstat (limited to 'simcity-2000-gog.sh')
-rw-r--r--simcity-2000-gog.sh8
1 files changed, 6 insertions, 2 deletions
diff --git a/simcity-2000-gog.sh b/simcity-2000-gog.sh
index 84ac5d5b175e..a89693acbdbd 100644
--- a/simcity-2000-gog.sh
+++ b/simcity-2000-gog.sh
@@ -9,6 +9,7 @@ cat <<EOF
--settings Change settings
--addon Start the addon Urban Renewal Kit
--scurk Start the addon Urban Renewal Kit
+ --willtv Start WillTV
Examples:
$script --windowed
@@ -29,7 +30,7 @@ fi
script=${0##*/}
-TEMP=$(getopt -o h --long help,windowed,addon,settings,scurk \
+TEMP=$(getopt -o h --long help,windowed,addon,settings,scurk,willtv \
-n "$script" -- "$@")
if [ $? != 0 ] ; then exit 1 ; fi
@@ -42,6 +43,7 @@ while true; do
--windowed) WINDOWED=1; shift ;;
--settings) START_SETTINGS=1; WINDOWED=1; shift ;;
--addon|--scurk) START_ADDON=1; shift ;;
+ --willtv) START_WILLTV=1; shift ;;
--) shift; break ;;
esac
done
@@ -54,8 +56,10 @@ fi
if [ "$START_SETTINGS" ]; then
configs+=('-conf' 'dosboxsc2000_settings.conf')
+elif [ "$START_WILLTV" ] ; then
+ configs+=('-conf' 'dosboxsc2000_willtv.conf')
elif [ "$START_ADDON" ] ; then
- configs+=('-conf' 'dosboxsc2000_addon.conf')
+ configs+=('-conf' 'dosboxsc2000_scurk.conf')
else
configs+=('-conf' 'dosboxsc2000_single.conf')
fi