From ccc1c4a6015f965923bea78a818c6e70bbaced1e Mon Sep 17 00:00:00 2001 From: Craig Carnell <1188869+cscd98@users.noreply.github.com> Date: Mon, 8 Dec 2025 19:20:11 +0000 Subject: [PATCH] =?UTF-8?q?mingw:=20use=20reinterpret=5Fcast=20for=20funct?= =?UTF-8?q?ion=E2=86=92void*=20conversion=20to=20satisfy=20C++=20standard?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 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 6a8bbfdb2e..8c08740896 100644 --- a/Source/Core/Common/GL/GLInterface/WGL.cpp +++ b/Source/Core/Common/GL/GLInterface/WGL.cpp @@ -223,7 +223,7 @@ void* GLContextWGL::GetFuncAddress(const std::string& name) func = GetProcAddress(opengl_module, name.c_str()); } - return func; + return reinterpret_cast(func); } // Create rendering window.