Files
GS13NG/code/__DEFINES/_auxtools.dm
Putnam3145 765dea059c added bee's paranoid auxmos function
cause it's necessary
2021-07-25 18:08:40 -07:00

10 lines
359 B
Plaintext

#define AUXMOS (world.system_type == MS_WINDOWS ? "auxmos.dll" : __detect_auxmos())
/proc/__detect_auxmos()
if (fexists("./libauxmos.so"))
return "./libauxmos.so"
else if (fexists("[world.GetConfig("env", "HOME")]/.byond/bin/libauxmos.so"))
return "[world.GetConfig("env", "HOME")]/.byond/bin/libauxmos.so"
else
CRASH("Could not find libauxmos.so")