Don't assign NULL to GLXDrawable

This commit is contained in:
baldurk
2015-08-06 07:49:31 +02:00
parent 16f8ad5c94
commit 120b42c15b
+1 -1
View File
@@ -56,7 +56,7 @@ struct GLWindowingData
struct GLWindowingData
{
GLWindowingData() { dpy = NULL; ctx = NULL; wnd = NULL; }
GLWindowingData() { dpy = NULL; ctx = NULL; wnd = 0; }
void SetCtx(void *c) { ctx = (GLXContext)c; }
Display *dpy;