Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 7 additions & 5 deletions src/window/renderer.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down
Loading