From 921ffe7111813804feee69047a2461328b930901 Mon Sep 17 00:00:00 2001 From: Thomas Martitz Date: Sat, 22 Jan 2011 18:27:05 +0000 Subject: Declaration of 'pause' from robotfindskitten has conflicting types for 'pause' from android-ndk-r5 Flyspray: FS#11901 Author: Benjamin Brown git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29114 a1c6a512-1295-4272-9138-f99709370657 --- apps/plugins/robotfindskitten.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'apps/plugins/robotfindskitten.c') 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); static void process_input(int); /*Helper functions*/ -static void pause(void); +static void rfkpause(void); static int validchar(char); static void play_animation(int); @@ -715,7 +715,7 @@ static void process_input(int input) case KITTEN: /*Found it!*/ play_animation(input); /* Wait for the user to click something */ - pause(); + rfkpause(); break; default: /*We hit a bogus object; print its message.*/ message(messages[bogus_messages[screen[check_x][check_y]-2]]); @@ -743,7 +743,7 @@ static void finish(int sig) * *****************************************************************************/ -static void pause() +static void rfkpause() { int button; rb->lcd_update(); @@ -831,7 +831,7 @@ static void instructions() "Press", "any", "key", "to", "start", }; display_text(ARRAYLEN(help_text), help_text, NULL, NULL, false); - pause(); + rfkpause(); } static void initialize_arrays() -- cgit v1.2.3