Commit 0c391fe3 authored by Lawson Whitney's avatar Lawson Whitney Committed by Alexandre Julliard

Fix reversed hour and minute in int 21 ah=2c.

parent ab936a63
......@@ -795,8 +795,8 @@ void WINAPI DOSVM_Int21Handler( CONTEXT86 *context )
{
SYSTEMTIME systime;
GetLocalTime( &systime );
SET_CL( context, systime.wHour );
SET_CH( context, systime.wMinute );
SET_CH( context, systime.wHour );
SET_CL( context, systime.wMinute );
SET_DH( context, systime.wSecond );
SET_DL( context, systime.wMilliseconds / 10 );
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment