Module: wine Branch: master Commit: 5c1ea9bff19d61f5a2eb2b28c26206bd6eee1ff6 URL: http://source.winehq.org/git/wine.git/?a=commit;h=5c1ea9bff19d61f5a2eb2b28c2...
Author: Frédéric Delanoy frederic.delanoy@gmail.com Date: Sat Oct 12 11:11:57 2013 +0200
wined3d: Avoid initializing some variables.
---
dlls/wined3d/state.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/wined3d/state.c b/dlls/wined3d/state.c index 3c03953..15a0b5a 100644 --- a/dlls/wined3d/state.c +++ b/dlls/wined3d/state.c @@ -819,8 +819,8 @@ static GLenum gl_stencil_op(enum wined3d_stencil_op op) static void state_stencil(struct wined3d_context *context, const struct wined3d_state *state, DWORD state_id) { const struct wined3d_gl_info *gl_info = context->gl_info; - DWORD onesided_enable = FALSE; - DWORD twosided_enable = FALSE; + DWORD onesided_enable; + DWORD twosided_enable; GLint func = GL_ALWAYS; GLint func_ccw = GL_ALWAYS; GLint ref = 0;