15ff91d
commit ea15d24f3ee82aab3981c2516e09831a7176460c
15ff91d
Author: Ray Strode <rstrode@redhat.com>
15ff91d
Date:   Mon Oct 20 16:51:35 2008 -0400
15ff91d
15ff91d
    At exit do on_hide_splash not ply_boot_splash_hide
15ff91d
    
15ff91d
    Calling just ply_boot_splash_hide meant that the
15ff91d
    terminal wasn't getting reset properly causing
15ff91d
    tty1 to misbehave.
15ff91d
15ff91d
diff --git a/src/main.c b/src/main.c
15ff91d
index d37c1b0..f35178a 100644
15ff91d
--- a/src/main.c
15ff91d
+++ b/src/main.c
15ff91d
@@ -373,7 +373,7 @@ on_quit (state_t *state,
15ff91d
   if (state->boot_splash != NULL)
15ff91d
     {
15ff91d
       if (!retain_splash)
15ff91d
-        ply_boot_splash_hide (state->boot_splash);
15ff91d
+        on_hide_splash (state);
15ff91d
       ply_boot_splash_free (state->boot_splash);
15ff91d
       state->boot_splash = NULL;
15ff91d
     }