diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2005-11-12 22:26:29 +0000 |
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2005-11-12 22:26:29 +0000 |
| commit | 149a50d688554de9ce80b4a2e5e6c7c624597186 (patch) | |
| tree | 0782cd26d3c3e5501338fa7460550cd281094c1f | |
| parent | 9b1377b9fb253cc26fcc2aa4c67619c79e3fb3ea (diff) | |
| download | rockbox-149a50d688554de9ce80b4a2e5e6c7c624597186.zip rockbox-149a50d688554de9ce80b4a2e5e6c7c624597186.tar.gz rockbox-149a50d688554de9ce80b4a2e5e6c7c624597186.tar.bz2 rockbox-149a50d688554de9ce80b4a2e5e6c7c624597186.tar.xz | |
fix warning on player builds
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7834 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | apps/wps-display.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/apps/wps-display.c b/apps/wps-display.c index 6cd0a98..eba36b1 100644 --- a/apps/wps-display.c +++ b/apps/wps-display.c @@ -147,6 +147,11 @@ static void wps_format(const char* fmt, char *bmpdir, size_t bmpdirlen) char* start_of_line = format_buffer; int line = 0; int subline; +#ifndef HAVE_LCD_BITMAP + /* no bitmap lcd == no bitmap loading */ + (void)bmpdir; + (void)bmpdirlen; +#endif strncpy(format_buffer, fmt, sizeof(format_buffer)); format_buffer[sizeof(format_buffer) - 1] = 0; |