From e6bc8fb342169d9936645fe1fdebe296d92bc44b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joshua=20Vanda=C3=ABle?= Date: Sat, 31 Jan 2026 10:36:55 +0100 Subject: [PATCH] WGL: Correctly load wglDestroyPbufferARB extension --- Source/Core/Common/GL/GLInterface/WGL.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/Common/GL/GLInterface/WGL.cpp b/Source/Core/Common/GL/GLInterface/WGL.cpp index 6a8bbfdb2eb..c85f24a7b2c 100644 --- a/Source/Core/Common/GL/GLInterface/WGL.cpp +++ b/Source/Core/Common/GL/GLInterface/WGL.cpp @@ -143,7 +143,7 @@ static void LoadWGLExtensions() wglReleasePbufferDCARB = reinterpret_cast(wglGetProcAddress("wglReleasePbufferDCARB")); wglDestroyPbufferARB = - reinterpret_cast(wglGetProcAddress("wglGetPbufferDCARB")); + reinterpret_cast(wglGetProcAddress("wglDestroyPbufferARB")); } static void ClearWGLExtensionPointers()