diff options
author | Eric Linenberg <elinenbe@umich.edu> | 2002-08-26 03:30:55 +0000 |
---|---|---|
committer | Eric Linenberg <elinenbe@umich.edu> | 2002-08-26 03:30:55 +0000 |
commit | 9a47cc4e7c45add4a8fc4f6f12698a5291a52c80 (patch) | |
tree | 735c6aa85b92ab62ffe5d42971bfb0bc1184aece /apps | |
parent | f9914b77d4d5f50198baef8647a8816a9c43b36c (diff) |
Philpp Petermann's game wormlet: add to game menu
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1974 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r-- | apps/games_menu.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/games_menu.c b/apps/games_menu.c index 3850a4f0ab..ae13bbba6c 100644 --- a/apps/games_menu.c +++ b/apps/games_menu.c @@ -29,6 +29,7 @@ #include "sprintf.h" #include "sokoban.h" +#include "wormlet.h" extern Menu tetris(void); Menu games_menu(void) @@ -39,6 +40,7 @@ Menu games_menu(void) struct menu_items items[] = { { "Tetris", tetris }, { "Sokoban", sokoban }, + { "Wormlet", wormlet } }; m=menu_init( items, sizeof items / sizeof(struct menu_items) ); |