Removed "always resize" option for screen resizing from ChangeAppSettings.sh, it now equals to "y"

It still leaves part of screen not resized on my widescreen HTC Evo
This commit is contained in:
pelya
2010-07-19 18:46:43 +03:00
parent e7112534b4
commit f72e72272a
5 changed files with 11 additions and 28 deletions

View File

@@ -40,7 +40,7 @@ if [ -n "$var" ] ; then
DownloadToSdcard="$var"
fi
echo -n "\nApplication window should be resized to fit into 480x320 screen,\n(y) or (n) or (a)lways resize, even if screen is bigger ($SdlVideoResize): "
echo -n "\nApplication window should be resized to fit into 480x320 screen (y) or (n) ($SdlVideoResize): "
read var
if [ -n "$var" ] ; then
SdlVideoResize="$var"
@@ -132,8 +132,6 @@ fi
AppDataDownloadUrl1="`echo $AppDataDownloadUrl | sed 's/[&]/%26/g'`"
if [ "$SdlVideoResize" = "y" ] ; then
SdlVideoResize=1
elif [ "$SdlVideoResize" = "a" ] ; then
SdlVideoResize=2
else
SdlVideoResize=0
fi