Fixed int25 & int26 error code.

This commit is contained in:
Andreas Mohr 1999-03-27 16:13:18 +00:00 committed by Alexandre Julliard
parent da5779e5bd
commit aa4aca2ea0
2 changed files with 2 additions and 2 deletions

View file

@ -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;
}

View file

@ -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;
}