summaryrefslogtreecommitdiff
path: root/apps/plugins/fireworks.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/fireworks.c')
-rw-r--r--apps/plugins/fireworks.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/plugins/fireworks.c b/apps/plugins/fireworks.c
index 75db1b3c0a..69c7be0bc4 100644
--- a/apps/plugins/fireworks.c
+++ b/apps/plugins/fireworks.c
@@ -320,7 +320,7 @@ MENUITEM_STRINGLIST(menu, "Fireworks Menu", NULL,
320 "FPS (Speed)", "Playback Control", "Quit"); 320 "FPS (Speed)", "Playback Control", "Quit");
321 321
322/* called on startup. initializes all variables, etc */ 322/* called on startup. initializes all variables, etc */
323void init_all(void) 323static void init_all(void)
324{ 324{
325 int j; 325 int j;
326 326
@@ -333,7 +333,7 @@ void init_all(void)
333 333
334/* called when a rocket hits its destination height. 334/* called when a rocket hits its destination height.
335 * prepares all associated fireworks to be expelled. */ 335 * prepares all associated fireworks to be expelled. */
336void init_explode(int x, int y, int firework, int points) 336static void init_explode(int x, int y, int firework, int points)
337{ 337{
338 int i; 338 int i;
339 339
@@ -357,7 +357,7 @@ void init_explode(int x, int y, int firework, int points)
357 357
358/* called when a rocket is launched. 358/* called when a rocket is launched.
359 * prepares said rocket to start moving towards its destination. */ 359 * prepares said rocket to start moving towards its destination. */
360void init_rocket(int rocket) 360static void init_rocket(int rocket)
361{ 361{
362 rb->srand(*rb->current_tick); 362 rb->srand(*rb->current_tick);
363 363
@@ -374,7 +374,7 @@ void init_rocket(int rocket)
374} 374}
375 375
376/* startup/configuration menu. */ 376/* startup/configuration menu. */
377void fireworks_menu(void) 377static void fireworks_menu(void)
378{ 378{
379 int selected = 0, result; 379 int selected = 0, result;
380 bool menu_quit = false; 380 bool menu_quit = false;