diff --git a/src/window/renderer.cc b/src/window/renderer.cc index c998373..7b33046 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/SteamClientHomebrew/Installer/tree/main/vendor/mesa\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-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); return; }