mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 08:25:03 +00:00
[PC98VID] Fix a typo, addendum to 959729f6ee
This commit is contained in:
parent
74ec94e12c
commit
6645227270
1 changed files with 1 additions and 1 deletions
|
@ -188,7 +188,7 @@ WRITE_GDC_CSRFORM(PUCHAR Port, PCSRFORMPARAM CursorParameters)
|
|||
WRITE_PORT_UCHAR(Port, (((_Bool)CursorParameters->Show) << 7) |
|
||||
(CursorParameters->LinesPerRow - 1));
|
||||
WRITE_PORT_UCHAR(Port, ((CursorParameters->BlinkRate & 0x03) << 6) |
|
||||
(((_Bool)CursorParameters->Blink) << 5) | CursorParameters->StartScanLine);
|
||||
(((_Bool)!CursorParameters->Blink) << 5) | CursorParameters->StartScanLine);
|
||||
WRITE_PORT_UCHAR(Port, (CursorParameters->EndScanLine << 3) | ((CursorParameters->BlinkRate & 0x1C) >> 2));
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue