From ae6abfb09468f06464ab3aaf0f51b9e8228584ba Mon Sep 17 00:00:00 2001 From: Dave Chapman Date: Sat, 3 Feb 2007 09:35:19 +0000 Subject: [PATCH] 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 --- apps/plugins/invadrox.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;