diff options
| author | Rafaël Carré <rafael.carre@gmail.com> | 2010-08-03 17:41:29 +0000 |
|---|---|---|
| committer | Rafaël Carré <rafael.carre@gmail.com> | 2010-08-03 17:41:29 +0000 |
| commit | 79d5c0702bb6d7294c306ca65c3f5bade1c2aa51 (patch) | |
| tree | 87e852c6ddc3f2908635bbd299b6a4c047093454 /tools | |
| parent | 1e0a01063d1088d83639f9e0dbf113efe67e5e73 (diff) | |
| download | rockbox-79d5c0702bb6d7294c306ca65c3f5bade1c2aa51.zip rockbox-79d5c0702bb6d7294c306ca65c3f5bade1c2aa51.tar.gz rockbox-79d5c0702bb6d7294c306ca65c3f5bade1c2aa51.tar.bz2 rockbox-79d5c0702bb6d7294c306ca65c3f5bade1c2aa51.tar.xz | |
configure: fix LCD width/height dialog for android
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27678 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'tools')
| -rwxr-xr-x | tools/configure | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/configure b/tools/configure index 7504d56..4daf11e 100755 --- a/tools/configure +++ b/tools/configure @@ -60,9 +60,10 @@ app_get_platform() { esac echo "Selected $app_platform platform" - echo "Select the LCD resolution seperated with enter: XxY (default: 320x480)" + echo "Please the LCD width (default: 320)" app_lcd_width=`input` if [ -z "$app_lcd_width" ]; then app_lcd_width="320"; fi + echo "Please the LCD height (default: 480)" app_lcd_height=`input` if [ -z "$app_lcd_height" ]; then app_lcd_height="480"; fi echo "Selected $app_lcd_width x $app_lcd_height resolution" |