mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 18:15:11 +00:00
[FREELDR] Add some missing UiDrawBackdrop() calls.
This commit is contained in:
parent
05b052fee2
commit
2e1f594d5e
3 changed files with 3 additions and 2 deletions
|
@ -131,6 +131,7 @@ RamDiskLoadVirtualFile(IN PCHAR FileName)
|
|||
//
|
||||
// Display progress
|
||||
//
|
||||
UiDrawBackdrop();
|
||||
UiDrawProgressBarCenter(1, 100, MsgBuffer);
|
||||
|
||||
//
|
||||
|
|
|
@ -83,13 +83,12 @@ LoadAndBootLinux(IN OperatingSystemItem* OperatingSystem,
|
|||
PFILE LinuxKernel = 0;
|
||||
PFILE LinuxInitrdFile = 0;
|
||||
|
||||
UiDrawBackdrop();
|
||||
|
||||
if (Description)
|
||||
sprintf(LinuxBootDescription, "Loading %s...", Description);
|
||||
else
|
||||
strcpy(LinuxBootDescription, "Loading Linux...");
|
||||
|
||||
UiDrawBackdrop();
|
||||
UiDrawStatusText(LinuxBootDescription);
|
||||
UiDrawProgressBarCenter(0, 100, LinuxBootDescription);
|
||||
|
||||
|
|
|
@ -358,6 +358,7 @@ WinLdrLoadModule(PCSTR ModuleName,
|
|||
//CHAR ProgressString[256];
|
||||
|
||||
/* Inform user we are loading files */
|
||||
//UiDrawBackdrop();
|
||||
//sprintf(ProgressString, "Loading %s...", FileName);
|
||||
//UiDrawProgressBarCenter(1, 100, ProgressString);
|
||||
|
||||
|
|
Loading…
Reference in a new issue