summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/plugins/star.c39
1 files changed, 38 insertions, 1 deletions
diff --git a/apps/plugins/star.c b/apps/plugins/star.c
index cdaeba1ddb..c6d533f96f 100644
--- a/apps/plugins/star.c
+++ b/apps/plugins/star.c
@@ -960,12 +960,21 @@ static int star_menu(void)
960 PLUGIN_USB_CONNECTED : PLUGIN_OK; 960 PLUGIN_USB_CONNECTED : PLUGIN_OK;
961 break; 961 break;
962 case 1: 962 case 1:
963#if LCD_DEPTH > 1
964 star_display_text(
965 "INFO\n\n"
966 "Take all the stars to go to the next level. "
967 "You can toggle control with the block to "
968 "use it as a mobile wall. The block cannot "
969 "take stars.", true);
970#else
963 star_display_text( 971 star_display_text(
964 "INFO\n\n" 972 "INFO\n\n"
965 "Take all \"o\" to go to the next level. " 973 "Take all the \"o\"s to go to the next level. "
966 "You can toggle control with the block to " 974 "You can toggle control with the block to "
967 "use it as a mobile wall. The block cannot " 975 "use it as a mobile wall. The block cannot "
968 "take \"o\".", true); 976 "take \"o\".", true);
977#endif
969 break; 978 break;
970 case 2: 979 case 2:
971#if CONFIG_KEYPAD == RECORDER_PAD 980#if CONFIG_KEYPAD == RECORDER_PAD
@@ -982,6 +991,34 @@ static int star_menu(void)
982 "[M <] Prev. level\n" 991 "[M <] Prev. level\n"
983 "[M ^] Reset level\n" 992 "[M ^] Reset level\n"
984 "[M >] Next level", true); 993 "[M >] Next level", true);
994#elif (CONFIG_KEYPAD == IRIVER_H100_PAD) || (CONFIG_KEYPAD == IRIVER_H300_PAD)
995 star_display_text("KEYS\n\n"
996 "[A-B] Toggle Ctl\n"
997 "[OFF] Exit\n"
998 "[A-B <] Prev. level\n"
999 "[A-B ^] Reset level\n"
1000 "[A-B >] Next level", true);
1001#elif (CONFIG_KEYPAD == IPOD_4G_PAD) || (CONFIG_KEYPAD == IPOD_3G_PAD)
1002 star_display_text("KEYS\n\n"
1003 "[SELECT] Toggle Ctl\n"
1004 "[S + MENU] Exit\n"
1005 "[S <] Prev. level\n"
1006 "[S + PLAY] Reset level\n"
1007 "[S >] Next level", true);
1008#elif CONFIG_KEYPAD == IAUDIO_X5_PAD
1009 star_display_text("KEYS\n\n"
1010 "[SELECT] Toggle Ctl\n"
1011 "[POWER] Exit\n"
1012 "[PLAY+DOWN] Prev. level\n"
1013 "[PLAY+RIGHT] Reset level\n"
1014 "[PLAY+UP] Next level", true);
1015#elif CONFIG_KEYPAD == GIGABEAT_PAD
1016 star_display_text("KEYS\n\n"
1017 "[MENU] Toggle Ctl\n"
1018 "[A] Exit\n"
1019 "[PWR+DOWN] Prev. level\n"
1020 "[PWR+RIGHT] Reset level\n"
1021 "[PWR+UP] Next level", true);
985#endif 1022#endif
986 break; 1023 break;
987 case 3: 1024 case 3: