From 8926837f7e81d0007d8cb94db701c4845a0a01a3 Mon Sep 17 00:00:00 2001 From: Mikko Rasa Date: Wed, 5 Jun 2013 22:35:56 +0300 Subject: [PATCH] Fix a missing parameter in wgl version of GLContext --- source/graphics/wgl/glcontext.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/graphics/wgl/glcontext.cpp b/source/graphics/wgl/glcontext.cpp index 1a0ad7a..964dea2 100644 --- a/source/graphics/wgl/glcontext.cpp +++ b/source/graphics/wgl/glcontext.cpp @@ -14,7 +14,7 @@ struct GLContext::Private }; -void GLContext::platform_init() +void GLContext::platform_init(const GLOptions &opts) { priv = new Private; -- 2.43.0