Skip to content

Commit

Permalink
Load SDL most-specified to least specific.
Browse files Browse the repository at this point in the history
  • Loading branch information
LunaTheFoxgirl committed Oct 1, 2024
1 parent dc28f4d commit 61913af
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions source/creator/core/package.d
Original file line number Diff line number Diff line change
Expand Up @@ -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",
];
}
Expand Down

0 comments on commit 61913af

Please sign in to comment.