http://bugs.winehq.org/show_bug.cgi?id=25489
Louis Lenders xerox_xerox2000@yahoo.co.uk changed:
What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW CC| |xerox_xerox2000@yahoo.co.uk Component|-unknown |opengl Ever Confirmed|0 |1
--- Comment #1 from Louis Lenders xerox_xerox2000@yahoo.co.uk 2011-07-14 18:05:46 CDT --- confirming. The hack below makes the app start fine for me. Probably an opengl bug.
diff --git a/dlls/opengl32/opengl_norm.c b/dlls/opengl32/opengl_norm.c index a1d3f94..de9feda 100644 --- a/dlls/opengl32/opengl_norm.c +++ b/dlls/opengl32/opengl_norm.c @@ -1020,7 +1020,7 @@ GLenum WINAPI wine_glGetError( void ) { ENTER_GL(); ret_value = glGetError( ); LEAVE_GL(); - return ret_value; + return 0;//ret_value; }
/***********************************************************************