comment on ddraw passthrough

This commit is contained in:
FunkyFr3sh 2020-10-15 07:22:48 +02:00
parent ae4b72c9c9
commit 1ebacfcd27
3 changed files with 3 additions and 3 deletions

View file

@ -827,7 +827,7 @@ HRESULT dd_CreateEx(GUID* lpGuid, LPVOID* lplpDD, REFIID iid, IUnknown* pUnkOute
{
if (g_ddraw)
{
/* FIXME: check the calling module before passing the call! */
/* Passthrough required for WIN XP - FIXME: check the calling module before passing the call! */
if (iid && IsEqualGUID(&IID_IDirectDraw, iid) && g_ddraw->DirectDrawCreate)
{
return g_ddraw->DirectDrawCreate(lpGuid, (LPDIRECTDRAW*)lplpDD, pUnkOuter);