From 748c49239517cfbb73daaddaa8b83e2ba1173312 Mon Sep 17 00:00:00 2001 From: Glenn Rice Date: Fri, 2 Apr 2010 00:11:08 +0000 Subject: [PATCH] Build fix for windows git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@5266 8ced0084-cf51-0410-be5f-012b33b47a6e --- Source/Plugins/Plugin_VideoOGL/Src/GLUtil.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Plugins/Plugin_VideoOGL/Src/GLUtil.cpp b/Source/Plugins/Plugin_VideoOGL/Src/GLUtil.cpp index b37d031445..6b5b64769b 100644 --- a/Source/Plugins/Plugin_VideoOGL/Src/GLUtil.cpp +++ b/Source/Plugins/Plugin_VideoOGL/Src/GLUtil.cpp @@ -721,7 +721,7 @@ bool OpenGL_MakeCurrent() #elif defined(HAVE_COCOA) && HAVE_COCOA cocoaGLMakeCurrent(GLWin.cocoaCtx,GLWin.cocoaWin); #elif defined(_WIN32) - return wglMakeCurrent(hDC,hRC) + return wglMakeCurrent(hDC,hRC); #elif defined(HAVE_X11) && HAVE_X11 return glXMakeCurrent(GLWin.dpy, GLWin.win, GLWin.ctx); #endif