summaryrefslogtreecommitdiff
path: root/apps/plugins
diff options
context:
space:
mode:
authorMarianne Arnold <pixelma@rockbox.org>2008-02-24 14:43:42 +0000
committerMarianne Arnold <pixelma@rockbox.org>2008-02-24 14:43:42 +0000
commit55259f526b85d44c2f753f8d52be38bb2c310280 (patch)
tree6d33fdb43f793e7ad5c39b8819d5af415542bbb2 /apps/plugins
parenta5a03cdb62b9d91b1d50fb60bde522addf6113a1 (diff)
downloadrockbox-55259f526b85d44c2f753f8d52be38bb2c310280.tar.gz
rockbox-55259f526b85d44c2f753f8d52be38bb2c310280.zip
The fire plugin got slightly too big for the Archos plugin buffer with one of the recent changes again, so save some bytes by reducing FIRE_WIDTH slightly.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16408 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins')
-rw-r--r--apps/plugins/fire.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/fire.c b/apps/plugins/fire.c
index 7b03e12441..6a0175f958 100644
--- a/apps/plugins/fire.c
+++ b/apps/plugins/fire.c
@@ -32,8 +32,8 @@
32 32
33#if (LCD_WIDTH == 112) && (LCD_HEIGHT == 64) 33#if (LCD_WIDTH == 112) && (LCD_HEIGHT == 64)
34/* Archos has not enough plugin RAM for full-width fire :( */ 34/* Archos has not enough plugin RAM for full-width fire :( */
35#define FIRE_WIDTH 108 35#define FIRE_WIDTH 106
36#define FIRE_XPOS 2 36#define FIRE_XPOS 3
37#else 37#else
38#define FIRE_WIDTH LCD_WIDTH 38#define FIRE_WIDTH LCD_WIDTH
39#define FIRE_XPOS 0 39#define FIRE_XPOS 0