Commit c6e6eae0 authored by Chris Robinson's avatar Chris Robinson Committed by Alexandre Julliard

wined3d: Initialize major and minor when filling GL caps.

parent 9a319f28
...@@ -409,7 +409,7 @@ BOOL IWineD3DImpl_FillGLCaps(WineD3D_GL_Info *gl_info, Display* display) { ...@@ -409,7 +409,7 @@ BOOL IWineD3DImpl_FillGLCaps(WineD3D_GL_Info *gl_info, Display* display) {
GLint gl_max; GLint gl_max;
GLfloat gl_floatv[2]; GLfloat gl_floatv[2];
Bool test = 0; Bool test = 0;
int major, minor; int major = 1, minor = 0;
BOOL return_value = TRUE; BOOL return_value = TRUE;
int i; int i;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment