Skip to content

Commit

Permalink
Load libjack64.dll on Win64
Browse files Browse the repository at this point in the history
  • Loading branch information
kcat committed Aug 19, 2024
1 parent bfa7a7f commit c68b793
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion alc/backends/jack.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,9 @@ bool jack_load()
#ifdef HAVE_DYNLOAD
if(!jack_handle)
{
#ifdef _WIN32
#if defined(_WIN64)
#define JACKLIB "libjack64.dll"
#elif defined(_WIN32)
#define JACKLIB "libjack.dll"
#else
#define JACKLIB "libjack.so.0"
Expand Down

0 comments on commit c68b793

Please sign in to comment.