mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-28 19:26:16 +00:00
[NTVDM]: Fix VgaGetDoubleVisionState definition (it was already correctly used in hardware/mouse.c).
svn path=/trunk/; revision=67223
This commit is contained in:
@@ -1890,11 +1890,11 @@ COORD VgaGetDisplayResolution(VOID)
|
||||
return Resolution;
|
||||
}
|
||||
|
||||
BOOLEAN VgaGetDoubleVisionState(PBOOLEAN Vertical, PBOOLEAN Horizontal)
|
||||
BOOLEAN VgaGetDoubleVisionState(PBOOLEAN Horizontal, PBOOLEAN Vertical)
|
||||
{
|
||||
if (GraphicsConsoleBuffer == NULL) return FALSE;
|
||||
if (Vertical) *Vertical = DoubleWidth;
|
||||
if (Horizontal) *Horizontal = DoubleHeight;
|
||||
if (Horizontal) *Horizontal = DoubleWidth;
|
||||
if (Vertical) *Vertical = DoubleHeight;
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
|
||||
@@ -262,7 +262,7 @@ COORD VgaGetDisplayResolution(VOID);
|
||||
VOID VgaRefreshDisplay(VOID);
|
||||
VOID VgaWriteFont(UINT FontNumber, CONST UCHAR *FontData, UINT Height);
|
||||
VOID VgaClearMemory(VOID);
|
||||
BOOLEAN VgaGetDoubleVisionState(PBOOLEAN Vertical, PBOOLEAN Horizontal);
|
||||
BOOLEAN VgaGetDoubleVisionState(PBOOLEAN Horizontal, PBOOLEAN Vertical);
|
||||
|
||||
BOOLEAN VgaInitialize(HANDLE TextHandle);
|
||||
VOID VgaCleanup(VOID);
|
||||
|
||||
Reference in New Issue
Block a user