summaryrefslogtreecommitdiff
path: root/apps/plugins/robotfindskitten.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/robotfindskitten.c')
-rw-r--r--apps/plugins/robotfindskitten.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/plugins/robotfindskitten.c b/apps/plugins/robotfindskitten.c
index 8426f35850..8314839015 100644
--- a/apps/plugins/robotfindskitten.c
+++ b/apps/plugins/robotfindskitten.c
@@ -567,7 +567,7 @@ static void play_game(void);
567static void process_input(int); 567static void process_input(int);
568 568
569/*Helper functions*/ 569/*Helper functions*/
570static void pause(void); 570static void rfkpause(void);
571static int validchar(char); 571static int validchar(char);
572static void play_animation(int); 572static void play_animation(int);
573 573
@@ -715,7 +715,7 @@ static void process_input(int input)
715 case KITTEN: /*Found it!*/ 715 case KITTEN: /*Found it!*/
716 play_animation(input); 716 play_animation(input);
717 /* Wait for the user to click something */ 717 /* Wait for the user to click something */
718 pause(); 718 rfkpause();
719 break; 719 break;
720 default: /*We hit a bogus object; print its message.*/ 720 default: /*We hit a bogus object; print its message.*/
721 message(messages[bogus_messages[screen[check_x][check_y]-2]]); 721 message(messages[bogus_messages[screen[check_x][check_y]-2]]);
@@ -743,7 +743,7 @@ static void finish(int sig)
743 * 743 *
744 *****************************************************************************/ 744 *****************************************************************************/
745 745
746static void pause() 746static void rfkpause()
747{ 747{
748 int button; 748 int button;
749 rb->lcd_update(); 749 rb->lcd_update();
@@ -831,7 +831,7 @@ static void instructions()
831 "Press", "any", "key", "to", "start", 831 "Press", "any", "key", "to", "start",
832 }; 832 };
833 display_text(ARRAYLEN(help_text), help_text, NULL, NULL, false); 833 display_text(ARRAYLEN(help_text), help_text, NULL, NULL, false);
834 pause(); 834 rfkpause();
835} 835}
836 836
837static void initialize_arrays() 837static void initialize_arrays()