diff --git a/dlls/winedos/int21.c b/dlls/winedos/int21.c index fa2a7b6cfbf..6914d348718 100644 --- a/dlls/winedos/int21.c +++ b/dlls/winedos/int21.c @@ -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 ); }