mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
[NTOS:INBV] Improve comment & define name.
This commit is contained in:
parent
7aec73a76c
commit
81dc30a434
3 changed files with 4 additions and 4 deletions
|
@ -1389,9 +1389,9 @@ Phase1InitializationDiscard(IN PVOID Context)
|
|||
/* Get the SOS setting */
|
||||
SosEnabled = (CommandLine && strstr(CommandLine, "SOS") != NULL);
|
||||
|
||||
/* Setup the boot driver */
|
||||
/* Setup the boot video driver */
|
||||
InbvEnableBootDriver(!NoGuiBoot);
|
||||
InbvDriverInitialize(LoaderBlock, IDB_MAX_RESOURCE);
|
||||
InbvDriverInitialize(LoaderBlock, IDB_MAX_RESOURCES);
|
||||
|
||||
/* Check if GUI boot is enabled */
|
||||
if (!NoGuiBoot)
|
||||
|
|
|
@ -48,7 +48,7 @@ static INBV_PROGRESS_STATE InbvProgressState;
|
|||
static BT_PROGRESS_INDICATOR InbvProgressIndicator = {0, 25, 0};
|
||||
|
||||
static ULONG ResourceCount = 0;
|
||||
static PUCHAR ResourceList[1 + IDB_MAX_RESOURCE]; // First entry == NULL, followed by 'ResourceCount' entries.
|
||||
static PUCHAR ResourceList[1 + IDB_MAX_RESOURCES]; // First entry == NULL, followed by 'ResourceCount' entries.
|
||||
|
||||
|
||||
/*
|
||||
|
|
|
@ -43,4 +43,4 @@
|
|||
#define IDB_PROGRESS_BAR 20
|
||||
#define IDB_COPYRIGHT 21
|
||||
|
||||
#define IDB_MAX_RESOURCE IDB_COPYRIGHT
|
||||
#define IDB_MAX_RESOURCES IDB_COPYRIGHT
|
||||
|
|
Loading…
Reference in a new issue