diff options
| author | Jonas Häggqvist <rasher@rasher.dk> | 2008-01-31 20:42:28 +0000 |
|---|---|---|
| committer | Jonas Häggqvist <rasher@rasher.dk> | 2008-01-31 20:42:28 +0000 |
| commit | 2dd3ea0b5da6f7603154d408cf9721124ae42f93 (patch) | |
| tree | 0b552761d023a365075c2414e1189eff10e0557e /apps/plugins | |
| parent | 0750d3c75b47f62ddc7432eff922eab33eead92e (diff) | |
| download | rockbox-2dd3ea0b5da6f7603154d408cf9721124ae42f93.zip rockbox-2dd3ea0b5da6f7603154d408cf9721124ae42f93.tar.gz rockbox-2dd3ea0b5da6f7603154d408cf9721124ae42f93.tar.bz2 rockbox-2dd3ea0b5da6f7603154d408cf9721124ae42f93.tar.xz | |
Use the right type for the remote logo. Thanks to amiconn for spotting and explaining on IRC.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16191 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins')
| -rw-r--r-- | apps/plugins/logo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/logo.c b/apps/plugins/logo.c index 898681b..5447652 100644 --- a/apps/plugins/logo.c +++ b/apps/plugins/logo.c @@ -32,7 +32,7 @@ PLUGIN_HEADER #define REMOTE_LOGO_WIDTH 91 #define REMOTE_LOGO_HEIGHT 32 #define REMOTE_LOGO remote_rockboxlogo -extern const fb_data remote_rockboxlogo[]; +extern const fb_remote_data remote_rockboxlogo[]; #endif /* HAVE_REMOTE_LCD */ #if LCD_DEPTH == 16 |