From 053736363d20d7f911e84e6e85088df8fdb4d022 Mon Sep 17 00:00:00 2001 From: "alexey.lysiuk" Date: Sun, 14 Jul 2019 10:52:32 +0300 Subject: [PATCH] - extended list of predefined filenames for SDL2 shared object lookup https://forum.zdoom.org/viewtopic.php?t=65348 --- src/posix/sdl/sdlglvideo.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/posix/sdl/sdlglvideo.cpp b/src/posix/sdl/sdlglvideo.cpp index e12da69cd6..39eae8b76b 100644 --- a/src/posix/sdl/sdlglvideo.cpp +++ b/src/posix/sdl/sdlglvideo.cpp @@ -242,7 +242,7 @@ SDLVideo::SDLVideo () // Load optional SDL functions if (!Priv::library.IsLoaded()) { - Priv::library.Load({ "libSDL2.so", "libSDL2-2.0.so" }); + Priv::library.Load({ "libSDL2-2.0.so.0", "libSDL2-2.0.so", "libSDL2.so" }); } #ifdef HAVE_VULKAN