From 9ace1afb580b156e79f4e744e312039f4fbd56be Mon Sep 17 00:00:00 2001 From: Matthias Kupfer Date: Sat, 13 Aug 2011 18:57:33 +0000 Subject: [PATCH] move clean the screen to a later point svn path=/trunk/; revision=53208 --- reactos/ntoskrnl/ex/init.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/reactos/ntoskrnl/ex/init.c b/reactos/ntoskrnl/ex/init.c index b0e93126d07..f017d4147aa 100644 --- a/reactos/ntoskrnl/ex/init.c +++ b/reactos/ntoskrnl/ex/init.c @@ -1918,9 +1918,6 @@ Phase1InitializationDiscard(IN PVOID Context) /* Update progress bar */ InbvUpdateProgressBar(100); - /* Clean the screen */ - if (InbvBootDriverInstalled) FinalizeBootLogo(); - /* Allow strings to be displayed */ InbvEnableDisplayString(TRUE); @@ -1959,6 +1956,9 @@ Phase1InitializationDiscard(IN PVOID Context) &Size, MEM_RELEASE); + /* Clean the screen */ + if (InbvBootDriverInstalled) FinalizeBootLogo(); + /* Increase init phase */ ExpInitializationPhase++;