summaryrefslogtreecommitdiff
path: root/wps
diff options
context:
space:
mode:
authorDave Chapman <dave@dchapman.com>2008-02-23 09:18:09 +0000
committerDave Chapman <dave@dchapman.com>2008-02-23 09:18:09 +0000
commitb68a762aeff9624a492a7b20ab61ff91d2828163 (patch)
treed13d4d43059eaa23aa466bbcf34cb4b1bd9dc17f /wps
parent69b7141f68b887569cc48ba5fac5f9613b645233 (diff)
downloadrockbox-b68a762aeff9624a492a7b20ab61ff91d2828163.tar.gz
rockbox-b68a762aeff9624a492a7b20ab61ff91d2828163.zip
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
Diffstat (limited to 'wps')
-rwxr-xr-xwps/wpsbuild.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/wps/wpsbuild.pl b/wps/wpsbuild.pl
index 7218250322..bcabb234f8 100755
--- a/wps/wpsbuild.pl
+++ b/wps/wpsbuild.pl
@@ -253,8 +253,8 @@ MOO
253} 253}
254 254
255# Get the LCD sizes first 255# Get the LCD sizes first
256my ($main_height, $main_width, $main_depth) = getlcdsizes(); 256($main_height, $main_width, $main_depth) = getlcdsizes();
257my ($remote_height, $remote_width, $remote_depth) = getlcdsizes(1); 257($remote_height, $remote_width, $remote_depth) = getlcdsizes(1);
258 258
259#print "LCD: ${main_height}x${main_width}x${main_depth}\n"; 259#print "LCD: ${main_height}x${main_width}x${main_depth}\n";
260$has_remote = 1 if ($remote_height && $remote_width && remote_depth); 260$has_remote = 1 if ($remote_height && $remote_width && remote_depth);