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
Kris Moore 2015-05-01 22:05:00 +02:00 committed by fryshorts
parent 9c483aae10
commit 29c7113dd7
1 changed files with 2 additions and 0 deletions

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