From 1dd96730f4ff2233f8fe25eec2b156b0680c358c Mon Sep 17 00:00:00 2001 From: Christian Ohm Date: Mon, 8 Jun 2009 14:18:35 +0000 Subject: [PATCH] Fix the "Mesa" string that was wrong for testing. Actually fixes #608. git-svn-id: https://warzone2100.svn.sourceforge.net/svnroot/warzone2100/trunk@7695 4a71c877-e1ca-e34f-864e-861f7616d084 --- lib/ivis_opengl/screen.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ivis_opengl/screen.c b/lib/ivis_opengl/screen.c index 16ece2c3c..4e38e6b8b 100644 --- a/lib/ivis_opengl/screen.c +++ b/lib/ivis_opengl/screen.c @@ -194,7 +194,7 @@ BOOL screenInitialise( // Make OpenGL's VBO functions available under the core names for // implementations that have them only as extensions, namely Mesa. - if (!strncmp((const char *)glGetString(GL_RENDERER), "Masa", 4)) + if (!strncmp((const char *)glGetString(GL_RENDERER), "Mesa", 4)) { debug(LOG_3D, "Using VBO extension functions under the core names."); // GLee is usually initialized automatically when needed, but