fix: improve debug message

Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
This commit is contained in:
Sefa Eyeoglu 2023-08-02 13:51:13 +02:00
parent f1c3da6583
commit b927e58126
No known key found for this signature in database
GPG Key ID: E13DFD4B47127951

View File

@ -1421,7 +1421,7 @@ void Application::detectLibraries()
#ifdef Q_OS_LINUX
m_detectedGLFWPath = MangoHud::findLibrary(BuildConfig.GLFW_LIBRARY_NAME);
m_detectedOpenALPath = MangoHud::findLibrary(BuildConfig.OPENAL_LIBRARY_NAME);
qDebug() << m_detectedGLFWPath << m_detectedOpenALPath;
qDebug() << "Detected native libraries:" << m_detectedGLFWPath << m_detectedOpenALPath;
#endif
}