From b68a762aeff9624a492a7b20ab61ff91d2828163 Mon Sep 17 00:00:00 2001 From: Dave Chapman Date: Sat, 23 Feb 2008 09:18:09 +0000 Subject: 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 --- wps/wpsbuild.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'wps') 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 } # 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); -- cgit