diff options
author | Colin Harrison <colin.harrison@virgin.net> | 2011-10-08 15:05:22 +0100 |
---|---|---|
committer | Jon TURNEY <jon.turney@dronecode.org.uk> | 2011-11-02 14:10:41 +0000 |
commit | ffe8ec86db2655b2c83e5ae61521898140c855ac (patch) | |
tree | 2cb7ae39d151f411a45a49c7eff993889187b18a | |
parent | 48fda3c52b41157313b7fd56d9f3fa3ad4166ed7 (diff) |
hw/xwin: Fix a typo in ddraw.h
Fix a (fortunately benign) typo in ddraw.h
Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk>
-rw-r--r-- | hw/xwin/ddraw.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/xwin/ddraw.h b/hw/xwin/ddraw.h index 2eb7c2674..9d87b2b95 100644 --- a/hw/xwin/ddraw.h +++ b/hw/xwin/ddraw.h @@ -1449,7 +1449,7 @@ DECLARE_INTERFACE_(IDirectDraw4,IUnknown) #define IDirectDraw4_GetAvailableVidMem(p,a,b,c) ICOM_CALL_(GetAvailableVidMem,p,(p,a,b,c)) /*** IDirectDraw4 methods ***/ #define IDirectDraw4_GetSurfaceFromDC(p,a,b) ICOM_CALL_(GetSurfaceFromDC,p,(p,a,b)) -#define IDirectDraw4_RestoreAllSurfaces(pc) ICOM_CALL_(RestoreAllSurfaces,p,(p)) +#define IDirectDraw4_RestoreAllSurfaces(p) ICOM_CALL_(RestoreAllSurfaces,p,(p)) #define IDirectDraw4_TestCooperativeLevel(p) ICOM_CALL_(TestCooperativeLevel,p,(p)) #define IDirectDraw4_GetDeviceIdentifier(p,a,b) ICOM_CALL_(GetDeviceIdentifier,p,(p,a,b)) |