1
0
Fork 0
forked from len0rd/rockbox

Fixed reds

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2404 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Björn Stenberg 2002-09-24 18:23:10 +00:00
parent a4c3b03f15
commit cae1d3b115

View file

@ -93,7 +93,7 @@ static void snow_init(void)
lcd_clear_display();
}
Menu snow(void)
bool snow(void)
{
snow_init();
@ -102,6 +102,6 @@ Menu snow(void)
lcd_update();
sleep(HZ/20);
if (button_get(false))
return MENU_OK;
return false;
}
}