1
0
Fork 0
forked from len0rd/rockbox

Added cube to the demo menu.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2631 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Daniel Stenberg 2002-10-15 07:22:43 +00:00
parent 57688469f4
commit b4ec73daaa

View file

@ -35,6 +35,7 @@
extern bool bounce(void); extern bool bounce(void);
extern bool snow(void); extern bool snow(void);
extern bool cube(void);
extern bool oscillograph(void); extern bool oscillograph(void);
bool demo_menu(void) bool demo_menu(void)
@ -48,6 +49,7 @@ bool demo_menu(void)
#ifndef SIMULATOR #ifndef SIMULATOR
{ "Oscillograph", oscillograph }, { "Oscillograph", oscillograph },
#endif #endif
{ str(LANG_CUBE), cube },
}; };
m=menu_init( items, sizeof items / sizeof(struct menu_items) ); m=menu_init( items, sizeof items / sizeof(struct menu_items) );
@ -59,3 +61,4 @@ bool demo_menu(void)
#endif #endif
#endif #endif