summaryrefslogtreecommitdiffstats
path: root/apps/plugins/invadrox.c
diff options
context:
space:
mode:
authorDave Chapman <dave@dchapman.com>2007-02-03 09:35:19 +0000
committerDave Chapman <dave@dchapman.com>2007-02-03 09:35:19 +0000
commitae6abfb09468f06464ab3aaf0f51b9e8228584ba (patch)
tree2ce1f9293bee60a13e035b1881ac980d7e2e539d /apps/plugins/invadrox.c
parentbc76a42eca84175111562dc85121630ed8c77ac9 (diff)
downloadrockbox-ae6abfb09468f06464ab3aaf0f51b9e8228584ba.tar.gz
rockbox-ae6abfb09468f06464ab3aaf0f51b9e8228584ba.zip
Bugfix: Remove use of IDATA_ATTR - plugins can not use IRAM without stopping audio playback. This fixes crashes when invadrox is started with audio playing.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12182 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/invadrox.c')
-rw-r--r--apps/plugins/invadrox.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/invadrox.c b/apps/plugins/invadrox.c
index befd91e5a7..5dfcf8b080 100644
--- a/apps/plugins/invadrox.c
+++ b/apps/plugins/invadrox.c
@@ -1605,7 +1605,7 @@ void init_invadrox(void)
inline bool handle_buttons(void)
{
- static unsigned int oldbuttonstate IDATA_ATTR = 0;
+ static unsigned int oldbuttonstate = 0;
unsigned int released, pressed, newbuttonstate;