summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRafaël Carré <rafael.carre@gmail.com>2010-08-03 17:41:29 +0000
committerRafaël Carré <rafael.carre@gmail.com>2010-08-03 17:41:29 +0000
commit79d5c0702bb6d7294c306ca65c3f5bade1c2aa51 (patch)
tree87e852c6ddc3f2908635bbd299b6a4c047093454
parent1e0a01063d1088d83639f9e0dbf113efe67e5e73 (diff)
downloadrockbox-79d5c0702bb6d7294c306ca65c3f5bade1c2aa51.tar.gz
rockbox-79d5c0702bb6d7294c306ca65c3f5bade1c2aa51.zip
configure: fix LCD width/height dialog for android
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27678 a1c6a512-1295-4272-9138-f99709370657
-rwxr-xr-xtools/configure3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/configure b/tools/configure
index 7504d562c9..4daf11e2c6 100755
--- a/tools/configure
+++ b/tools/configure
@@ -60,9 +60,10 @@ app_get_platform() {
60 esac 60 esac
61 61
62 echo "Selected $app_platform platform" 62 echo "Selected $app_platform platform"
63 echo "Select the LCD resolution seperated with enter: XxY (default: 320x480)" 63 echo "Please the LCD width (default: 320)"
64 app_lcd_width=`input` 64 app_lcd_width=`input`
65 if [ -z "$app_lcd_width" ]; then app_lcd_width="320"; fi 65 if [ -z "$app_lcd_width" ]; then app_lcd_width="320"; fi
66 echo "Please the LCD height (default: 480)"
66 app_lcd_height=`input` 67 app_lcd_height=`input`
67 if [ -z "$app_lcd_height" ]; then app_lcd_height="480"; fi 68 if [ -z "$app_lcd_height" ]; then app_lcd_height="480"; fi
68 echo "Selected $app_lcd_width x $app_lcd_height resolution" 69 echo "Selected $app_lcd_width x $app_lcd_height resolution"