Skip to content
Snippets Groups Projects
Commit c70ac184 authored by Ove Kåven's avatar Ove Kåven Committed by Alexandre Julliard
Browse files

Added (dummy) Death/Resurrection calls to DisplayDib.

parent 01c7ee2f
No related branches found
No related tags found
No related merge requests found
......@@ -28,12 +28,19 @@ static WORD DISPDIB_Begin(WORD wFlags)
default:
return DISPLAYDIB_NOTSUPPORTED;
}
if (VGA_SetMode(Xres,Yres,Depth)) return DISPLAYDIB_NOTSUPPORTED;
/* more or less dummy calls to Death/Resurrection, for completeness */
/* FIXME: what arguments should they get? */
Death(0);
if (VGA_SetMode(Xres,Yres,Depth)) {
Resurrection(0,0,0,0,0,0,0);
return DISPLAYDIB_NOTSUPPORTED;
}
return DISPLAYDIB_NOERROR;
}
static void DISPDIB_End(void)
{
Resurrection(0,0,0,0,0,0,0); /* FIXME: arguments */
VGA_Exit();
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment