From 3b52485eb3c62a1f631d16eb02b291c1ff55c629 Mon Sep 17 00:00:00 2001 From: Linus Nielsen Feltzing Date: Mon, 15 May 2006 07:47:29 +0000 Subject: Look for dedicated bitmaps for the LCD dimensions when building the WPS (in a subdir, for example iCatcher/160x128x16/) git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9938 a1c6a512-1295-4272-9138-f99709370657 --- wps/wpsbuild.pl | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) (limited to 'wps/wpsbuild.pl') diff --git a/wps/wpsbuild.pl b/wps/wpsbuild.pl index 9d2f122227..03a1f664d5 100755 --- a/wps/wpsbuild.pl +++ b/wps/wpsbuild.pl @@ -132,7 +132,12 @@ sub copywps { } close(WPSFILE); - if (-e "$dir/$wpsdir") { + if (-e "$dir/$wps_prefix/$req_g") { + foreach $file (@filelist) { + system("cp $dir/$wps_prefix/$req_g/$file .rockbox/wps/$wps_prefix/"); + } + } + elsif (-e "$dir/$wps_prefix") { foreach $file (@filelist) { system("cp $dir/$wps_prefix/$file .rockbox/wps/$wps_prefix/"); } @@ -239,8 +244,9 @@ while() { foreach $d (@depthlist) { next if ($d > $rdepth); - $req_g_wps = $wps_prefix . "." . $rwidth . "x" . $rheight - . "x" . $d . ".wps"; + $req_g = $rwidth . "x" . $rheight . "x" . $d; + + $req_g_wps = $wps_prefix . "." . $req_g . ".wps"; last if (-e "$wpsdir/$req_g_wps"); } $req_t_wps = $wps_prefix . ".txt" . ".wps"; -- cgit v1.2.3