From 26e348d907c0250155a99f1a3b4f4c8cb9d3ee49 Mon Sep 17 00:00:00 2001 From: Preshyon <50429125+madmaxgrey@users.noreply.github.com> Date: Sat, 4 Apr 2026 19:49:11 -0230 Subject: [PATCH 1/3] Update renderer.cc replace dead link --- src/window/renderer.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/window/renderer.cc b/src/window/renderer.cc index c998373..be70201 100644 --- a/src/window/renderer.cc +++ b/src/window/renderer.cc @@ -63,7 +63,7 @@ void GLFWErrorCallback(int error, const char* description) if (error == GLFW_API_UNAVAILABLE) { MessageBoxA(NULL, "Your system doesn't support hardware rendering, which is preventing the installer from displaying properly. " - "To resolve this issue, download the DLL files from \nhttps://github.com/SteamClientHomebrew/Installer/tree/main/vendor/mesa\n and place them in the same " + "To resolve this issue, download the DLL files from \nhttps://github.com/pal1000/mesa-dist-win/releases/latest\n and place them in the same " "folder as the installer. This will enable software rendering as an alternative.\n\n" "Please note: This is a system limitation, not an installer bug, so there's no need to report it to the development team.", "Error", MB_ICONERROR); From 06ad51c700e95afd05efdce437731f82d3d8e564 Mon Sep 17 00:00:00 2001 From: Preshyon <50429125+madmaxgrey@users.noreply.github.com> Date: Sat, 4 Apr 2026 21:13:51 -0230 Subject: [PATCH 2/3] Update renderer.cc format adjustment --- src/window/renderer.cc | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/src/window/renderer.cc b/src/window/renderer.cc index be70201..08e0489 100644 --- a/src/window/renderer.cc +++ b/src/window/renderer.cc @@ -62,11 +62,13 @@ void GLFWErrorCallback(int error, const char* description) { if (error == GLFW_API_UNAVAILABLE) { MessageBoxA(NULL, - "Your system doesn't support hardware rendering, which is preventing the installer from displaying properly. " - "To resolve this issue, download the DLL files from \nhttps://github.com/pal1000/mesa-dist-win/releases/latest\n and place them in the same " - "folder as the installer. This will enable software rendering as an alternative.\n\n" - "Please note: This is a system limitation, not an installer bug, so there's no need to report it to the development team.", - "Error", MB_ICONERROR); + "Your system doesn't support hardware rendering, which is preventing the installer from displaying properly. " + "To resolve this issue, download the DLL files from:\n" + "https://github.com/pal1000/mesa-dist-win/releases/latest\n" + "Download mesa3d-26.0.3-release-msvc.7z and place them in the same folder as the installer. " + "This will enable software rendering as an alternative.\n\n" + "Please note: This is a system limitation, not an installer bug, so there's no need to report it to the development team.", + "Error", MB_ICONERROR); return; } From cecc5045bc4a680ca50e86b0f1103567648bfe1c Mon Sep 17 00:00:00 2001 From: Ethan Alexander <81448108+shdwmtr@users.noreply.github.com> Date: Sun, 5 Apr 2026 13:17:02 -0300 Subject: [PATCH 3/3] fix: Update download instructions for mesa3d DLL files --- src/window/renderer.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/window/renderer.cc b/src/window/renderer.cc index 08e0489..7b33046 100644 --- a/src/window/renderer.cc +++ b/src/window/renderer.cc @@ -65,7 +65,7 @@ void GLFWErrorCallback(int error, const char* description) "Your system doesn't support hardware rendering, which is preventing the installer from displaying properly. " "To resolve this issue, download the DLL files from:\n" "https://github.com/pal1000/mesa-dist-win/releases/latest\n" - "Download mesa3d-26.0.3-release-msvc.7z and place them in the same folder as the installer. " + "Download mesa3d-x.x.x-release-msvc.7z and place them in the same folder as the installer. " "This will enable software rendering as an alternative.\n\n" "Please note: This is a system limitation, not an installer bug, so there's no need to report it to the development team.", "Error", MB_ICONERROR);