Author: hbelusca Date: Sun Dec 9 21:59:25 2012 New Revision: 57856
URL: http://svn.reactos.org/svn/reactos?rev=57856&view=rev Log: [NTOSKRNL] Mention that the part of code related to displaying SKU-related bitmap is disabled due to CORE-6781.
Modified: trunk/reactos/ntoskrnl/inbv/inbv.c
Modified: trunk/reactos/ntoskrnl/inbv/inbv.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/ntoskrnl/inbv/inbv.c?rev=57... ============================================================================== --- trunk/reactos/ntoskrnl/inbv/inbv.c [iso-8859-1] (original) +++ trunk/reactos/ntoskrnl/inbv/inbv.c [iso-8859-1] Sun Dec 9 21:59:25 2012 @@ -63,7 +63,7 @@
static VOID NTAPI -BootImageFadeProc(VOID) +BootImageFadeIn(VOID) { UCHAR PaletteBitmapBuffer[sizeof(BITMAPINFOHEADER) + sizeof(_MainPalette)]; PBITMAPINFOHEADER PaletteBitmap = (PBITMAPINFOHEADER)PaletteBitmapBuffer; @@ -668,7 +668,10 @@
PVOID Header, Band, Text, Screen; ROT_BAR_TYPE TempRotBarSelection = RB_UNSPECIFIED; - // UCHAR Buffer[64]; + +#ifdef CORE_6781_resolved + UCHAR Buffer[64]; +#endif
/* Check if the system thread has already been created */ if (SysThreadCreated) @@ -776,9 +779,9 @@ InbvSetProgressBarCoordinates(257, 352);
/* Display the boot logo and fade it in */ - BootImageFadeProc(); - -#if 0 + BootImageFadeIn(); + +#ifdef CORE_6781_resolved /* Check for non-workstation products */ if (SharedUserData->NtProductType != NtProductWinNt) { @@ -793,8 +796,10 @@ #endif }
+#ifdef CORE_6781_resolved /* Draw the SKU text if it exits */ -// if (Text) InbvBitBlt(Text, 180, 121); + if (Text) InbvBitBlt(Text, 180, 121); +#endif
/* Draw the progress bar bit */ // if (Bar) InbvBitBlt(Bar, 0, 0);