Author: mkupfer
Date: Sat Aug 13 18:57:33 2011
New Revision: 53208
URL:
http://svn.reactos.org/svn/reactos?rev=53208&view=rev
Log:
move clean the screen to a later point
Modified:
trunk/reactos/ntoskrnl/ex/init.c
Modified: trunk/reactos/ntoskrnl/ex/init.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/ntoskrnl/ex/init.c?rev=532…
==============================================================================
--- trunk/reactos/ntoskrnl/ex/init.c [iso-8859-1] (original)
+++ trunk/reactos/ntoskrnl/ex/init.c [iso-8859-1] Sat Aug 13 18:57:33 2011
@@ -1918,9 +1918,6 @@
/* Update progress bar */
InbvUpdateProgressBar(100);
- /* Clean the screen */
- if (InbvBootDriverInstalled) FinalizeBootLogo();
-
/* Allow strings to be displayed */
InbvEnableDisplayString(TRUE);
@@ -1959,6 +1956,9 @@
&Size,
MEM_RELEASE);
+ /* Clean the screen */
+ if (InbvBootDriverInstalled) FinalizeBootLogo();
+
/* Increase init phase */
ExpInitializationPhase++;