UI: Add FreeBSD as a platform for version string
Add an additional ifdef to correctly identify FreeBSD as platform when generating the version string.master
parent
9c483aae10
commit
29c7113dd7
|
@ -355,6 +355,8 @@ string OBSApp::GetVersionString() const
|
|||
ver << "windows)";
|
||||
#elif __APPLE__
|
||||
ver << "mac)";
|
||||
#elif __FreeBSD__
|
||||
ver << "freebsd)";
|
||||
#else /* assume linux for the time being */
|
||||
ver << "linux)";
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue