summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDave Chapman <dave@dchapman.com>2008-03-23 12:15:52 +0000
committerDave Chapman <dave@dchapman.com>2008-03-23 12:15:52 +0000
commit65d50de5b7b0e6bffbf62487601a7af82172df49 (patch)
tree802e089aa5e333209b355b10c1735a77792ca03a
parent408613ca2220df3e59fb01d2d8cf922042ab682a (diff)
downloadrockbox-65d50de5b7b0e6bffbf62487601a7af82172df49.tar.gz
rockbox-65d50de5b7b0e6bffbf62487601a7af82172df49.zip
Oops - correctly reset the bmp filenames
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16762 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/gui/wps_parser.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/gui/wps_parser.c b/apps/gui/wps_parser.c
index a791440d0e..eb4b1087e3 100644
--- a/apps/gui/wps_parser.c
+++ b/apps/gui/wps_parser.c
@@ -1483,7 +1483,7 @@ bool wps_data_load(struct wps_data *wps_data,
1483 1483
1484#ifdef HAVE_LCD_BITMAP 1484#ifdef HAVE_LCD_BITMAP
1485 /* Set all filename pointers to NULL */ 1485 /* Set all filename pointers to NULL */
1486 memset(bmp_names, sizeof(bmp_names), 0); 1486 memset(bmp_names, 0, sizeof(bmp_names));
1487#endif 1487#endif
1488 1488
1489 /* Skip leading UTF-8 BOM, if present. */ 1489 /* Skip leading UTF-8 BOM, if present. */