summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRay Strode <rstrode@redhat.com>2008-05-29 14:57:50 -0400
committerRay Strode <rstrode@redhat.com>2008-05-29 14:57:50 -0400
commit895c827a9f352436b7aca685d74d215516ccfbca (patch)
tree6671f47d876728933cb94e58f1f968a058ba84d1 /src
parent3493c2919fb84c201303459afc6c6bcdf855185b (diff)
downloadplymouth-895c827a9f352436b7aca685d74d215516ccfbca.tar.gz
plymouth-895c827a9f352436b7aca685d74d215516ccfbca.tar.xz
plymouth-895c827a9f352436b7aca685d74d215516ccfbca.zip
More s/fedora// work
Diffstat (limited to 'src')
-rw-r--r--src/main.c2
-rw-r--r--src/splash-plugins/fade-in/plugin.c12
2 files changed, 7 insertions, 7 deletions
diff --git a/src/main.c b/src/main.c
index 5005a7d..9624e61 100644
--- a/src/main.c
+++ b/src/main.c
@@ -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)
{
diff --git a/src/splash-plugins/fade-in/plugin.c b/src/splash-plugins/fade-in/plugin.c
index 9d7789f..b231548 100644
--- a/src/splash-plugins/fade-in/plugin.c
+++ b/src/splash-plugins/fade-in/plugin.c
@@ -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;