Commit aa4aca2e authored by Andreas Mohr's avatar Andreas Mohr Committed by Alexandre Julliard

Fixed int25 & int26 error code.

parent da5779e5
......@@ -26,7 +26,7 @@ void WINAPI INT_Int25Handler( CONTEXT *context )
if (!DRIVE_IsValid(AL_reg(context)))
{
SET_CFLAG(context);
AX_reg(context) = 0x0101; /* unknown unit */
AX_reg(context) = 0x0201; /* unknown unit */
return;
}
......
......@@ -24,7 +24,7 @@ void WINAPI INT_Int26Handler( CONTEXT *context )
if (!DRIVE_IsValid(AL_reg(context)))
{
SET_CFLAG(context);
AX_reg(context) = 0x0101; /* unknown unit */
AX_reg(context) = 0x0201; /* unknown unit */
return;
}
......
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