Remove exclamation mark that does not belong there. Thanks to Salamander again.

svn path=/trunk/; revision=17202
This commit is contained in:
Maarten Bosma 2005-08-08 14:54:24 +00:00
parent ae51cca93f
commit b1b37ffc00

View file

@ -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;
}