? apps/recorder/star.c ? apps/recorder/star.h ? tools/bmp2rb ? tools/convbdf ? tools/descramble ? tools/scramble ? tools/sh2d Index: apps/games_menu.c =================================================================== RCS file: /cvsroot/rockbox/apps/games_menu.c,v retrieving revision 1.11 diff -u -b -r1.11 games_menu.c --- apps/games_menu.c 24 Sep 2002 17:47:08 -0000 1.11 +++ apps/games_menu.c 26 Sep 2002 07:14:13 -0000 @@ -34,6 +34,7 @@ #include "sokoban.h" #include "wormlet.h" +#include "star.h" #include "lang.h" extern bool tetris(void); @@ -47,6 +48,7 @@ { str(LANG_TETRIS), tetris }, { str(LANG_SOKOBAN), sokoban }, { str(LANG_WORMLET), wormlet }, + { str(LANG_STAR), star } }; m=menu_init( items, sizeof items / sizeof(struct menu_items) ); Index: apps/lang/english.lang =================================================================== RCS file: /cvsroot/rockbox/apps/lang/english.lang,v retrieving revision 1.10 diff -u -b -r1.10 english.lang --- apps/lang/english.lang 26 Sep 2002 05:50:50 -0000 1.10 +++ apps/lang/english.lang 26 Sep 2002 07:14:17 -0000 @@ -111,6 +111,11 @@ eng: "Snake" new: +id: LANG_STAR +desc: in the games menu +eng: "Star" +new: + id: LANG_PLAYLIST_LOAD desc: displayed on screen while loading a playlist eng: "Loading..." Index: uisimulator/x11/Makefile =================================================================== RCS file: /cvsroot/rockbox/uisimulator/x11/Makefile,v retrieving revision 1.76 diff -u -b -r1.76 Makefile --- uisimulator/x11/Makefile 25 Sep 2002 14:11:47 -0000 1.76 +++ uisimulator/x11/Makefile 26 Sep 2002 07:14:49 -0000 @@ -87,7 +87,7 @@ MENUS = games_menu.c demo_menu.c settings_menu.c sound_menu.c ifeq ($(DISPLAY),-DHAVE_LCD_BITMAP) - APPS += tetris.c sokoban.c bounce.c snow.c bmp.c widgets.c wormlet.c + APPS += tetris.c sokoban.c bounce.c snow.c star.c bmp.c widgets.c wormlet.c endif SRCS = screenhack.c uibasic.c resources.c visual.c lcd-x11.c stubs.c \ @@ -187,6 +187,9 @@ $(CC) $(APPCFLAGS) -c $< -o $@ $(OBJDIR)/sokoban.o: $(RECDIR)/sokoban.c + $(CC) $(APPCFLAGS) -c $< -o $@ + +$(OBJDIR)/star.o: $(RECDIR)/star.c $(CC) $(APPCFLAGS) -c $< -o $@ $(OBJDIR)/bounce.o: $(RECDIR)/bounce.c