mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 19:05:52 +00:00
fix stupied bug in GetDeviceIdentifier/GetDeviceIdentifier7,
spotted by Kamil Hornicek tykef at atlas dot cz (irc nick : Pigglesworth) svn path=/trunk/; revision=30709
This commit is contained in:
parent
be9c3ff7cb
commit
267c6c63f9
1 changed files with 1 additions and 1 deletions
|
@ -98,7 +98,7 @@ Main_DirectDraw_GetDeviceIdentifier7(LPDDRAWI_DIRECTDRAW_INT This,
|
|||
break;
|
||||
}
|
||||
|
||||
if (!_stricmp(DisplayDeviceA.DeviceName, This->lpLcl->lpGbl->cDriverName))
|
||||
if (_stricmp(DisplayDeviceA.DeviceName, This->lpLcl->lpGbl->cDriverName) != 0)
|
||||
{
|
||||
/* if we got another device like hardware mpeg decoder or video card or another drv */
|
||||
found = TRUE;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue