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
This commit is contained in:
Dave Chapman 2008-02-23 09:18:09 +00:00
parent 69b7141f68
commit b68a762aef

View file

@ -253,8 +253,8 @@ MOO
} }
# Get the LCD sizes first # Get the LCD sizes first
my ($main_height, $main_width, $main_depth) = getlcdsizes(); ($main_height, $main_width, $main_depth) = getlcdsizes();
my ($remote_height, $remote_width, $remote_depth) = getlcdsizes(1); ($remote_height, $remote_width, $remote_depth) = getlcdsizes(1);
#print "LCD: ${main_height}x${main_width}x${main_depth}\n"; #print "LCD: ${main_height}x${main_width}x${main_depth}\n";
$has_remote = 1 if ($remote_height && $remote_width && remote_depth); $has_remote = 1 if ($remote_height && $remote_width && remote_depth);