summaryrefslogtreecommitdiff
path: root/Source
diff options
context:
space:
mode:
authorJoshua Vandaƫle <joshua@vandaele.software>2026-01-31 10:36:55 +0100
committerJoshua Vandaƫle <joshua@vandaele.software>2026-01-31 10:36:55 +0100
commite6bc8fb342169d9936645fe1fdebe296d92bc44b (patch)
tree6c5a2ce098d499ae347018be0325c53d0a6ed454 /Source
parentb1020186519d690a9b64a215f00da7453ab2803b (diff)
WGL: Correctly load wglDestroyPbufferARB extension
Diffstat (limited to 'Source')
-rw-r--r--Source/Core/Common/GL/GLInterface/WGL.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/Common/GL/GLInterface/WGL.cpp b/Source/Core/Common/GL/GLInterface/WGL.cpp
index 6a8bbfdb2e..c85f24a7b2 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<PFNWGLRELEASEPBUFFERDCARBPROC>(wglGetProcAddress("wglReleasePbufferDCARB"));
wglDestroyPbufferARB =
- reinterpret_cast<PFNWGLDESTROYPBUFFERARBPROC>(wglGetProcAddress("wglGetPbufferDCARB"));
+ reinterpret_cast<PFNWGLDESTROYPBUFFERARBPROC>(wglGetProcAddress("wglDestroyPbufferARB"));
}
static void ClearWGLExtensionPointers()