summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
Diffstat (limited to 'apps')
-rw-r--r--apps/demo_menu.c37
1 files changed, 20 insertions, 17 deletions
diff --git a/apps/demo_menu.c b/apps/demo_menu.c
index fa918dc476..f1e3fd1955 100644
--- a/apps/demo_menu.c
+++ b/apps/demo_menu.c
@@ -1,21 +1,21 @@
1/*************************************************************************** 1/***************************************************************************
2 * __________ __ ___. 2* __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___ 3* Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ / 4* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < < 5* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ 6* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/ 7* \/ \/ \/ \/ \/
8 * $Id$ 8* $Id$
9 * 9*
10 * Copyright (C) 2002 Robert Hak 10* Copyright (C) 2002 Robert Hak
11 * 11*
12 * All files in this archive are subject to the GNU General Public License. 12* All files in this archive are subject to the GNU General Public License.
13 * See the file COPYING in the source tree root for full license agreement. 13* See the file COPYING in the source tree root for full license agreement.
14 * 14*
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 15* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied. 16* KIND, either express or implied.
17 * 17*
18 ****************************************************************************/ 18****************************************************************************/
19#include "config.h" 19#include "config.h"
20#include "options.h" 20#include "options.h"
21 21
@@ -35,6 +35,7 @@
35 35
36extern bool bounce(void); 36extern bool bounce(void);
37extern bool snow(void); 37extern bool snow(void);
38extern bool cube(void);
38extern bool oscillograph(void); 39extern bool oscillograph(void);
39 40
40bool demo_menu(void) 41bool demo_menu(void)
@@ -48,6 +49,7 @@ bool demo_menu(void)
48#ifndef SIMULATOR 49#ifndef SIMULATOR
49 { "Oscillograph", oscillograph }, 50 { "Oscillograph", oscillograph },
50#endif 51#endif
52 { str(LANG_CUBE), cube },
51 }; 53 };
52 54
53 m=menu_init( items, sizeof items / sizeof(struct menu_items) ); 55 m=menu_init( items, sizeof items / sizeof(struct menu_items) );
@@ -59,3 +61,4 @@ bool demo_menu(void)
59 61
60#endif 62#endif
61#endif 63#endif
64