From fe67a87885816448e78a99ef0cbe8fd331c3b103 Mon Sep 17 00:00:00 2001 From: Bertrik Sikken Date: Sat, 15 Oct 2011 20:38:08 +0000 Subject: plugins: another round of making local functions static git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30758 a1c6a512-1295-4272-9138-f99709370657 --- apps/plugins/fireworks.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'apps/plugins/fireworks.c') diff --git a/apps/plugins/fireworks.c b/apps/plugins/fireworks.c index 75db1b3..69c7be0 100644 --- a/apps/plugins/fireworks.c +++ b/apps/plugins/fireworks.c @@ -320,7 +320,7 @@ MENUITEM_STRINGLIST(menu, "Fireworks Menu", NULL, "FPS (Speed)", "Playback Control", "Quit"); /* called on startup. initializes all variables, etc */ -void init_all(void) +static void init_all(void) { int j; @@ -333,7 +333,7 @@ void init_all(void) /* called when a rocket hits its destination height. * prepares all associated fireworks to be expelled. */ -void init_explode(int x, int y, int firework, int points) +static void init_explode(int x, int y, int firework, int points) { int i; @@ -357,7 +357,7 @@ void init_explode(int x, int y, int firework, int points) /* called when a rocket is launched. * prepares said rocket to start moving towards its destination. */ -void init_rocket(int rocket) +static void init_rocket(int rocket) { rb->srand(*rb->current_tick); @@ -374,7 +374,7 @@ void init_rocket(int rocket) } /* startup/configuration menu. */ -void fireworks_menu(void) +static void fireworks_menu(void) { int selected = 0, result; bool menu_quit = false; -- cgit v1.1