Index: star.c
===================================================================
RCS file: /cvsroot/rockbox/apps/plugins/star.c,v
retrieving revision 1.22
diff -r1.22 star.c
52c52
< #define STAR_SLEEP ;
---
> #define STAR_SLEEP rb->sleep(1);
96a97
> #define STAR_MENU_RUN2 BUTTON_SELECT
109a111
> #define STAR_MENU_RUN2 BUTTON_SELECT
568c570
<                                  107, label_offset_y - ( STAR_TILE_SIZE - char_height ) / 2 + 1,
---
>                                  107, label_offset_y - ( STAR_TILE_SIZE - char_height ) / 2 - 2,
573c575
<                                  107, label_offset_y - ( STAR_TILE_SIZE - char_height ) / 2 + 1,
---
>                                  107, label_offset_y - ( STAR_TILE_SIZE - char_height ) / 2 - 2,
575c577
<     rb->lcd_update_rect(0, label_offset_y - ( STAR_TILE_SIZE - char_height ) / 2 + 1, LCD_WIDTH, STAR_TILE_SIZE );
---
>     rb->lcd_update_rect(0, label_offset_y - ( STAR_TILE_SIZE - char_height ) / 2 - 2, LCD_WIDTH, STAR_TILE_SIZE );
911c913
<                 if (menu_y > 0)
---
>                 if (menu_y > 0) {
912a915,919
> 		    int oldforeground = rb->lcd_get_foreground();
> 		    rb->lcd_set_foreground(LCD_BLACK);
>                     rb->lcd_fillrect(0, menu_offset_y + char_height * menu_y - 2, 15, char_height + 3);
> 		    rb->lcd_set_foreground(oldforeground);
>                 }
915c922
<                 if (menu_y < 3)
---
>                 if (menu_y < 3) {
916a924,928
> 		    int oldforeground = rb->lcd_get_foreground();
> 		    rb->lcd_set_foreground(LCD_BLACK);
>                     rb->lcd_fillrect(0, menu_offset_y + char_height * menu_y - 1, 15, char_height + 2);
> 		    rb->lcd_set_foreground(oldforeground);
>                 }
920c932
< #ifdef STAR_MENU_RUN3
---
> #ifdef STAR_MENU_RUN2
921a934,935
> #endif
> #ifdef STAR_MENU_RUN3
