diff --git a/code/__defines/_init.dm b/code/__defines/_init.dm index 474e021d33..c87faec59c 100644 --- a/code/__defines/_init.dm +++ b/code/__defines/_init.dm @@ -7,7 +7,7 @@ // This allows us to get the real details of everything lagging at server start. // world.Profile(PROFILE_START) #if defined(ENABLE_BYOND_TRACY) - var/tracy_init = LIBCALL("prof.dll", "init")() // Setup Tracy integration + var/tracy_init = LIBCALL(world.system_type == MS_WINDOWS ? "prof.dll" : "./libprof.so", "init")() // Setup Tracy integration if(length(tracy_init) != 0 && tracy_init[1] == ".") // it returned the output file to_world_log("TRACY Enabled, streaming to [tracy_init].") else if(tracy_init != "0") diff --git a/libprof.so b/libprof.so new file mode 100644 index 0000000000..2577e13975 Binary files /dev/null and b/libprof.so differ diff --git a/prof.dll b/prof.dll index 71cf5cac61..834802881a 100644 Binary files a/prof.dll and b/prof.dll differ