Compile fix for linux with added void* cast

This commit is contained in:
baldurk
2017-07-06 12:23:15 +01:00
parent 3a47aa7840
commit 19ecf36b13
+1 -1
View File
@@ -1569,7 +1569,7 @@ void WrappedOpenGL::ActivateContext(GLWindowingData winData)
// consider an attribs created context, to avoid starting capturing when the user is creating
// dummy contexts to be able to create the real one.
if(ctxdata.attribsCreate)
FirstFrame(ctxdata.ctx, winData.wnd);
FirstFrame(ctxdata.ctx, (void *)winData.wnd);
}
}