Commit 7959be38 authored by Chris Robinson's avatar Chris Robinson Committed by Alexandre Julliard

winex11: Don't add spaces to the beginning of the wglExtensions list.

parent ccaddb8a
......@@ -3003,6 +3003,7 @@ static BOOL glxRequireExtension(const char *requiredExtension)
static void register_extension_string(const char *ext)
{
if (WineGLInfo.wglExtensions[0])
strcat(WineGLInfo.wglExtensions, " ");
strcat(WineGLInfo.wglExtensions, ext);
......@@ -3016,10 +3017,7 @@ static BOOL register_extension(const WineGLExtension * ext)
assert( WineGLExtensionListSize < MAX_EXTENSIONS );
WineGLExtensionList[WineGLExtensionListSize++] = ext;
strcat(WineGLInfo.wglExtensions, " ");
strcat(WineGLInfo.wglExtensions, ext->extName);
TRACE("'%s'\n", ext->extName);
register_extension_string(ext->extName);
for (i = 0; ext->extEntryPoints[i].funcName; ++i)
TRACE(" - '%s'\n", ext->extEntryPoints[i].funcName);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment