From 284ba950ef164dce77d86637ac75f50012e7dd04 Mon Sep 17 00:00:00 2001 From: Henri Verbeet Date: Sun, 23 Oct 2011 18:24:01 +0200 Subject: [PATCH] wined3d: Make the device parameter to SetupForBlit() const. --- dlls/wined3d/context.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/wined3d/context.c b/dlls/wined3d/context.c index 2742b54241f..66460d97608 100644 --- a/dlls/wined3d/context.c +++ b/dlls/wined3d/context.c @@ -1717,7 +1717,7 @@ static inline void set_blit_dimension(UINT width, UINT height) { * *****************************************************************************/ /* Context activation is done by the caller. */ -static void SetupForBlit(struct wined3d_device *device, struct wined3d_context *context) +static void SetupForBlit(const struct wined3d_device *device, struct wined3d_context *context) { int i; const struct wined3d_gl_info *gl_info = context->gl_info;