diff options
| author | Bertrik Sikken <bertrik@sikken.nl> | 2011-12-20 21:05:56 +0000 |
|---|---|---|
| committer | Bertrik Sikken <bertrik@sikken.nl> | 2011-12-20 21:05:56 +0000 |
| commit | e6c85a6735d3a1952dda563ffeb19a77a77af1dd (patch) | |
| tree | 182c41fb61f5399b32156002ad648d2bce8cbada /apps/gui/icon.c | |
| parent | 67eefad6a50997d9262503e41204720a2d8c39b9 (diff) | |
| download | rockbox-e6c85a6735d3a1952dda563ffeb19a77a77af1dd.zip rockbox-e6c85a6735d3a1952dda563ffeb19a77a77af1dd.tar.gz rockbox-e6c85a6735d3a1952dda563ffeb19a77a77af1dd.tar.bz2 rockbox-e6c85a6735d3a1952dda563ffeb19a77a77af1dd.tar.xz | |
local variable app/gui/icon.c/iconsets can be made static
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@31386 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/gui/icon.c')
| -rw-r--r-- | apps/gui/icon.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/gui/icon.c b/apps/gui/icon.c index e1f4ec3..f11de7f 100644 --- a/apps/gui/icon.c +++ b/apps/gui/icon.c @@ -58,7 +58,7 @@ enum Iconset { Iconset_Count }; -struct iconset { +static struct iconset { struct bitmap bmp; bool loaded; int handle; |