From 61913af4e8e15266bde4bc978fc9d77fb878d396 Mon Sep 17 00:00:00 2001 From: LunaTheFoxgirl Date: Tue, 1 Oct 2024 12:06:31 +0200 Subject: [PATCH] Load SDL most-specified to least specific. --- source/creator/core/package.d | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/creator/core/package.d b/source/creator/core/package.d index 388bd95fd..c125eaf09 100644 --- a/source/creator/core/package.d +++ b/source/creator/core/package.d @@ -44,11 +44,11 @@ version(OSX) { enum const(char)*[] SDL_VERSIONS = ["SDL2.dll"]; } else { enum const(char)*[] SDL_VERSIONS = [ - "libSDL2-2.0.so", - "/usr/local/lib/libSDL2-2.0.so", "libSDL2-2.0.so.0", - "/usr/local/lib/libSDL2-2.0.so.0", + "libSDL2-2.0.so", "libSDL2.so", + "/usr/local/lib/libSDL2-2.0.so.0", + "/usr/local/lib/libSDL2-2.0.so", "/usr/local/lib/libSDL2.so", ]; }