Commit 1b6f2574 authored by Andreas Mohr's avatar Andreas Mohr Committed by Alexandre Julliard

Tiny int17 printer fix.

parent be163bf7
......@@ -38,7 +38,7 @@ void WINAPI DOSVM_Int17Handler( CONTEXT86 *context )
{
case 0x01: /* PRINTER - INITIALIZE */
FIXME("Initialize Printer - Not Supported\n");
SET_AH( context, 0 ); /* time out */
SET_AH( context, 0x30 ); /* selected | out of paper */
break;
case 0x02: /* PRINTER - GET STATUS */
FIXME("Get Printer Status - Not Supported\n");
......
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