mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 13:11:22 +00:00
[PC98VID] Fix clang 12 warning
This commit is contained in:
parent
c7d1ff4a9d
commit
959729f6ee
1 changed files with 2 additions and 2 deletions
|
@ -185,10 +185,10 @@ FORCEINLINE
|
|||
VOID
|
||||
WRITE_GDC_CSRFORM(PUCHAR Port, PCSRFORMPARAM CursorParameters)
|
||||
{
|
||||
WRITE_PORT_UCHAR(Port, ((CursorParameters->Show & 0x01) << 7) |
|
||||
WRITE_PORT_UCHAR(Port, (((_Bool)CursorParameters->Show) << 7) |
|
||||
(CursorParameters->LinesPerRow - 1));
|
||||
WRITE_PORT_UCHAR(Port, ((CursorParameters->BlinkRate & 0x03) << 6) |
|
||||
((!CursorParameters->Blink & 0x01) << 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