UI: Add FreeBSD as a platform for version string

Add an additional ifdef to correctly identify FreeBSD as platform when
generating the version string.
This commit is contained in:
Kris Moore 2015-05-01 22:05:00 +02:00 committed by fryshorts
parent 9c483aae10
commit 29c7113dd7

View file

@ -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