]> git.ipfire.org Git - thirdparty/plymouth.git/commitdiff
More s/fedora// work
authorRay Strode <rstrode@redhat.com>
Thu, 29 May 2008 18:57:50 +0000 (14:57 -0400)
committerRay Strode <rstrode@redhat.com>
Thu, 29 May 2008 18:57:50 +0000 (14:57 -0400)
src/main.c
src/splash-plugins/fade-in/plugin.c

index 5005a7d094057d0fba62dd386cfa138b3bae05a2..9624e619cf7fc593e4c40cca68c215806df1ce1b 100644 (file)
@@ -152,7 +152,7 @@ on_show_splash (state_t *state)
 {
   ply_trace ("Showing splash screen");
   state->boot_splash = start_boot_splash (state,
-                                          PLYMOUTH_PLUGIN_PATH "spinfinity.so");
+                                          PLYMOUTH_PLUGIN_PATH "fade-in.so");
 
   if (state->boot_splash == NULL)
     {
index 9d7789f89ba14c225feca2385cf88c1b56afde02..b2315488ce1238bbf858642a90242329ce28b349 100644 (file)
@@ -1,4 +1,4 @@
-/* fedora-fade-in.c - boot splash plugin
+/* fade-in.c - boot splash plugin
  *
  * Copyright (C) 2007, 2008 Red Hat, Inc.
  *
@@ -100,11 +100,11 @@ create_plugin (void)
   plugin = calloc (1, sizeof (ply_boot_splash_plugin_t));
   plugin->start_time = 0.0;
 
-  plugin->logo_image = ply_image_new (PLYMOUTH_IMAGE_DIR "fedora-fade-in/fedora-logo.png");
-  plugin->star_image = ply_image_new (PLYMOUTH_IMAGE_DIR "fedora-fade-in/star.png");
-  plugin->lock_image = ply_image_new (PLYMOUTH_IMAGE_DIR "fedora-fade-in/lock.png");
-  plugin->bullet_image = ply_image_new (PLYMOUTH_IMAGE_DIR "fedora-fade-in/bullet.png");
-  plugin->entry_image = ply_image_new (PLYMOUTH_IMAGE_DIR "fedora-fade-in/entry.png");
+  plugin->logo_image = ply_image_new (PLYMOUTH_IMAGE_DIR "fade-in/fedora-logo.png");
+  plugin->star_image = ply_image_new (PLYMOUTH_IMAGE_DIR "fade-in/star.png");
+  plugin->lock_image = ply_image_new (PLYMOUTH_IMAGE_DIR "fade-in/lock.png");
+  plugin->bullet_image = ply_image_new (PLYMOUTH_IMAGE_DIR "fade-in/bullet.png");
+  plugin->entry_image = ply_image_new (PLYMOUTH_IMAGE_DIR "fade-in/entry.png");
   plugin->stars = ply_list_new ();
 
   return plugin;