mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 12:23:31 +00:00
fix a typo in function DxEngGetHdevData the sub function DxEGShDevData_OpenRefs did validate data bit wrong
it should send back 0 for no openrefs and 1 for openrefs. thx Pigglesworth debuglog to found it. svn path=/trunk/; revision=33241
This commit is contained in:
@@ -362,7 +362,7 @@ DxEngGetHdevData(HDEV hDev,
|
||||
break;
|
||||
case DxEGShDevData_OpenRefs:
|
||||
DPRINT1("requested DXEGSHDEVDATA DxEGShDevData_OpenRefs\n");
|
||||
retVal = (DWORD_PTR) PDev->cPdevOpenRefs == 0;
|
||||
retVal = (DWORD_PTR) PDev->cPdevOpenRefs != 0;
|
||||
break;
|
||||
case DxEGShDevData_palette:
|
||||
DPRINT1("requested DXEGSHDEVDATA DxEGShDevData_palette\n");
|
||||
|
||||
Reference in New Issue
Block a user