diff options
| author | Dave Chapman <dave@dchapman.com> | 2008-02-23 09:18:09 +0000 |
|---|---|---|
| committer | Dave Chapman <dave@dchapman.com> | 2008-02-23 09:18:09 +0000 |
| commit | b68a762aeff9624a492a7b20ab61ff91d2828163 (patch) | |
| tree | d13d4d43059eaa23aa466bbcf34cb4b1bd9dc17f | |
| parent | 69b7141f68b887569cc48ba5fac5f9613b645233 (diff) | |
| download | rockbox-b68a762aeff9624a492a7b20ab61ff91d2828163.zip rockbox-b68a762aeff9624a492a7b20ab61ff91d2828163.tar.gz rockbox-b68a762aeff9624a492a7b20ab61ff91d2828163.tar.bz2 rockbox-b68a762aeff9624a492a7b20ab61ff91d2828163.tar.xz | |
Fix a bug introduced r16373 - the .cfg files for the bundled themes no longer included the fg/bg colours for any target.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16382 a1c6a512-1295-4272-9138-f99709370657
| -rwxr-xr-x | wps/wpsbuild.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/wps/wpsbuild.pl b/wps/wpsbuild.pl index 7218250..bcabb23 100755 --- a/wps/wpsbuild.pl +++ b/wps/wpsbuild.pl @@ -253,8 +253,8 @@ MOO } # Get the LCD sizes first -my ($main_height, $main_width, $main_depth) = getlcdsizes(); -my ($remote_height, $remote_width, $remote_depth) = getlcdsizes(1); +($main_height, $main_width, $main_depth) = getlcdsizes(); +($remote_height, $remote_width, $remote_depth) = getlcdsizes(1); #print "LCD: ${main_height}x${main_width}x${main_depth}\n"; $has_remote = 1 if ($remote_height && $remote_width && remote_depth); |