mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
Remove exclamation mark that does not belong there. Thanks to Salamander again.
svn path=/trunk/; revision=17202
This commit is contained in:
parent
ae51cca93f
commit
b1b37ffc00
1 changed files with 3 additions and 3 deletions
|
@ -63,14 +63,14 @@ HRESULT WINAPI Main_DDrawSurface_Initialize (LPDIRECTDRAWSURFACE7 iface, LPDIREC
|
|||
CreateData.dwSCnt = 1;
|
||||
CreateData.lplpSList = &pLocal;
|
||||
|
||||
if(!This->owner->DriverCallbacks.DdMain.CreateSurface (&CreateData) != DDHAL_DRIVER_HANDLED)
|
||||
if(This->owner->DriverCallbacks.DdMain.CreateSurface (&CreateData) != DDHAL_DRIVER_HANDLED)
|
||||
return DDERR_INVALIDPARAMS;
|
||||
|
||||
OutputDebugString(L"This does not get hit.");
|
||||
|
||||
if(CreateData.ddRVal != DD_OK)
|
||||
return CreateData.ddRVal;
|
||||
|
||||
OutputDebugString(L"This does not get hit.");
|
||||
|
||||
return DD_OK;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue