mirror of
https://github.com/reactos/reactos.git
synced 2024-11-20 14:30:57 +00:00
Display message only if dmDriverExtra != 0
svn path=/trunk/; revision=32299
This commit is contained in:
parent
965ca6e12f
commit
532ccf4d6c
1 changed files with 4 additions and 1 deletions
|
@ -514,7 +514,10 @@ IntPrepareDriver()
|
|||
DPRINT1("WARNING!!! Need to Alloc DMW !!!!!!\n");
|
||||
}
|
||||
// Dont remove until we finish testing other drivers.
|
||||
DPRINT1("DMW extra %x !!!!!!\n",PrimarySurface.DMW.dmDriverExtra);
|
||||
if (PrimarySurface.DMW.dmDriverExtra != 0)
|
||||
{
|
||||
DPRINT1("**** DMW extra = %u bytes. Please report to ros-dev@reactos.org ****\n", PrimarySurface.DMW.dmDriverExtra);
|
||||
}
|
||||
|
||||
if (0 == PrimarySurface.GDIInfo.ulLogPixelsX)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue