[PC98VID] Fix a typo, addendum to 959729f6ee

This commit is contained in:
Victor Perevertkin 2021-04-09 03:59:55 +03:00
parent 74ec94e12c
commit 6645227270
No known key found for this signature in database
GPG Key ID: C750B7222E9C7830

View File

@ -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));
}