1
0
Fork 0
forked from len0rd/rockbox

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
This commit is contained in:
Dave Chapman 2007-02-03 09:35:19 +00:00
parent bc76a42eca
commit ae6abfb094

View file

@ -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;