Commit 4b8c1c46 authored by Huw Davies's avatar Huw Davies Committed by Alexandre Julliard

wineps.drv: Ignore ExtTextOut calls that occur before the job has started.

parent d9a4a3bf
......@@ -47,6 +47,8 @@ BOOL PSDRV_ExtTextOut( PSDRV_PDEVICE *physDev, INT x, INT y, UINT flags,
TRACE("(x=%d, y=%d, flags=0x%08x, str=%s, count=%d, lpDx=%p)\n", x, y,
flags, debugstr_wn(str, count), count, lpDx);
if(physDev->job.hJob == 0) return FALSE;
/* write font if not already written */
PSDRV_SetFont(physDev);
......
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