From 76634ab84ed543333bbdbb7460096feeeb8348c1 Mon Sep 17 00:00:00 2001 From: FunkyFr3sh Date: Sun, 6 Jun 2021 02:28:30 +0200 Subject: [PATCH] adjust logging --- src/IDirectDraw/IDirectDrawSurface.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/IDirectDraw/IDirectDrawSurface.c b/src/IDirectDraw/IDirectDrawSurface.c index 970414a..273ac97 100644 --- a/src/IDirectDraw/IDirectDrawSurface.c +++ b/src/IDirectDraw/IDirectDrawSurface.c @@ -240,9 +240,9 @@ HRESULT __stdcall IDirectDrawSurface__GetDC(IDirectDrawSurfaceImpl *This, HDC FA HRESULT __stdcall IDirectDrawSurface__GetFlipStatus(IDirectDrawSurfaceImpl *This, DWORD a) { - dprintfex("NOT_IMPLEMENTED -> %s(This=%p)\n", __FUNCTION__, This); + dprintfex("-> %s(This=%p)\n", __FUNCTION__, This); HRESULT ret = DD_OK; - dprintfex("NOT_IMPLEMENTED <- %s\n", __FUNCTION__); + dprintfex("<- %s\n", __FUNCTION__); return ret; }