Commit 99c174e9 authored by Ove Kaaven's avatar Ove Kaaven Committed by Alexandre Julliard

Use macro V86_FLAG.

parent 68774116
......@@ -145,7 +145,7 @@ static void INT_GetRealModeContext( REALMODECALL *call, CONTEXT *context )
ESI_reg(context) = call->esi;
EDI_reg(context) = call->edi;
EBP_reg(context) = call->ebp;
EFL_reg(context) = call->fl | 0x00020000; /* V86 */
EFL_reg(context) = call->fl | V86_FLAG;
EIP_reg(context) = call->ip;
ESP_reg(context) = call->sp;
CS_reg(context) = call->cs;
......
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