From 2e852e4398c692c80e87938bd08dd68016ae1161 Mon Sep 17 00:00:00 2001 From: Alibek Omarov Date: Sun, 21 Sep 2025 01:25:14 +0500 Subject: [PATCH] scripts: flatpak: better message for missing GL32 extension --- scripts/flatpak/run.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/flatpak/run.sh b/scripts/flatpak/run.sh index e50adde1..07c01e2e 100755 --- a/scripts/flatpak/run.sh +++ b/scripts/flatpak/run.sh @@ -23,7 +23,7 @@ if [[ "$FLATPAK_ID" == *.Compat.i386 ]]; then fi if [[ ! -e /lib/i386-linux-gnu/libGL.so.1 ]]; then - die "Can't find 32-bit OpenGL runtime extension. Try running 'flatpak install org.freedesktop.Platform.GL32.default'" + die "Can't find 32-bit OpenGL runtime extension. Try installing running appropriate GL32 extension for your system (org.freedesktop.Platform.GL32.nvidia-VERSION for NVIDIA, otherwise org.freedesktop.Platform.GL32.default)" fi fi