Merge pull request #429 from Irgendwer01/develop

better FreeBSD support
This commit is contained in:
Sefa Eyeoglu
2022-04-16 18:21:54 +02:00
committed by GitHub

View File

@ -213,8 +213,12 @@ QString MinecraftInstance::binRoot() const
QString MinecraftInstance::getNativePath() const QString MinecraftInstance::getNativePath() const
{ {
#ifdef Q_OS_FREEBSD
QDir natives_dir("/usr/local/lib/lwjgl/");
#else
QDir natives_dir(FS::PathCombine(instanceRoot(), "natives/")); QDir natives_dir(FS::PathCombine(instanceRoot(), "natives/"));
return natives_dir.absolutePath(); return natives_dir.absolutePath();
#endif
} }
QString MinecraftInstance::getLocalLibraryPath() const QString MinecraftInstance::getLocalLibraryPath() const