From ddab848f06d77cf7027a3d597a35942e35a760c9 Mon Sep 17 00:00:00 2001 From: Rafal Harabien Date: Wed, 15 Jun 2011 19:28:22 +0000 Subject: [PATCH] [NTOSKRNL] - Revert part of r52244. It was incorrect. Spotted by Alex Ionescu svn path=/trunk/; revision=52254 --- reactos/ntoskrnl/ex/init.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/reactos/ntoskrnl/ex/init.c b/reactos/ntoskrnl/ex/init.c index 032623d7ed0..06f32396173 100644 --- a/reactos/ntoskrnl/ex/init.c +++ b/reactos/ntoskrnl/ex/init.c @@ -1922,14 +1922,14 @@ Phase1InitializationDiscard(IN PVOID Context) ProcessInfo = &InitBuffer->ProcessInfo; ExpLoadInitialProcess(InitBuffer, &ProcessParameters, &Environment); + /* Clean the screen */ + if (InbvBootDriverInstalled) FinalizeBootLogo(); + /* Update progress bar */ InbvUpdateProgressBar(100); - /* Disallow strings to be displayed */ - InbvEnableDisplayString(FALSE); - - /* Clean the screen */ - if (InbvBootDriverInstalled) FinalizeBootLogo(); + /* Allow strings to be displayed */ + InbvEnableDisplayString(TRUE); /* Wait 5 seconds for initial process to initialize */ Timeout.QuadPart = Int32x32To64(5, -10000000);