NOISSUE preview of LWJGL version changing
It still needs work - some LWJGL versions are exclusive to macOS. This has to be encoded in the json.
This commit is contained in:
@ -55,7 +55,15 @@ void Library::getApplicableFiles(OpSys system, QStringList& jar, QStringList& na
|
||||
}
|
||||
else
|
||||
{
|
||||
native += actualPath(m_mojangDownloads->getDownloadInfo(nativeClassifier)->path);
|
||||
auto dlinfo = m_mojangDownloads->getDownloadInfo(nativeClassifier);
|
||||
if(!dlinfo)
|
||||
{
|
||||
qWarning() << "Cannot get native for" << nativeClassifier << "while processing" << m_name;
|
||||
}
|
||||
else
|
||||
{
|
||||
native += actualPath(dlinfo->path);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user