Fix for GLEW Version 2.2

This commit is contained in:
jojo61 2021-08-11 11:23:43 +02:00
parent eabbbcb442
commit 59a82d409e
2 changed files with 4 additions and 3 deletions

View File

@ -1806,9 +1806,10 @@ bool cOglThread::InitOpenGL(void)
GLenum err = glewInit();
if (err != GLEW_OK) {
esyslog("[softhddev]glewInit failed, aborting\n");
return false;
esyslog("[softhddev]glewInit failed: %s Using Version: %s\n",glewGetErrorString(err),glewGetString(GLEW_VERSION));
// return false;
}
#endif
VertexBuffers[vbText]->EnableBlending();

View File

@ -63,7 +63,7 @@ extern void ToggleLUT();
/// vdr-plugin version number.
/// Makefile extracts the version number for generating the file name
/// for the distribution archive.
static const char *const VERSION = "3.5.1"
static const char *const VERSION = "3.5.2"
#ifdef GIT_REV
"-GIT" GIT_REV
#endif