mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 16:36:33 +00:00
[CONSRV]: Code formatting only.
svn path=/trunk/; revision=62512
This commit is contained in:
parent
9899182f48
commit
90989af0c7
2 changed files with 3 additions and 2 deletions
|
@ -88,7 +88,8 @@ GRAPHICS_BUFFER_Initialize(OUT PCONSOLE_SCREEN_BUFFER* Buffer,
|
|||
/* We do not use anything else than uncompressed bitmaps */
|
||||
if (GraphicsInfo->Info.lpBitMapInfo->bmiHeader.biCompression != BI_RGB)
|
||||
{
|
||||
DPRINT1("biCompression == %d != BI_RGB, correct that!\n", GraphicsInfo->Info.lpBitMapInfo->bmiHeader.biCompression);
|
||||
DPRINT1("biCompression == %d != BI_RGB, fix that!\n",
|
||||
GraphicsInfo->Info.lpBitMapInfo->bmiHeader.biCompression);
|
||||
GraphicsInfo->Info.lpBitMapInfo->bmiHeader.biCompression = BI_RGB;
|
||||
}
|
||||
|
||||
|
|
|
@ -52,7 +52,7 @@ typedef struct _GUI_CONSOLE_DATA
|
|||
|
||||
HWND hWindow; /* Handle to the console's window */
|
||||
HDC hMemDC; /* Memory DC holding the console framebuffer */
|
||||
HBITMAP hBitmap; /* Console framebuffer */
|
||||
HBITMAP hBitmap; /* Console framebuffer */
|
||||
HPALETTE hSysPalette; /* Handle to the original system palette */
|
||||
|
||||
HICON hIcon; /* Handle to the console's icon (big) */
|
||||
|
|
Loading…
Reference in a new issue