1
0
Fork 0
forked from len0rd/rockbox

iriver: Idle CPU in the FM radio screen

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7570 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Linus Nielsen Feltzing 2005-09-29 11:19:55 +00:00
parent 58384f03fb
commit 8b9c64f19d

View file

@ -274,6 +274,8 @@ bool radio_screen(void)
str(LANG_FM_BUTTONBAR_RECORD)); str(LANG_FM_BUTTONBAR_RECORD));
#endif #endif
cpu_idle_mode(true);
while(!done) while(!done)
{ {
if(search_dir) if(search_dir)
@ -622,6 +624,9 @@ bool radio_screen(void)
} }
#endif #endif
cpu_idle_mode(false);
return have_recorded; return have_recorded;
} }