Browse Source

UI: Add FreeBSD as a platform for version string

Add an additional ifdef to correctly identify FreeBSD as platform when
generating the version string.
Kris Moore 10 years ago
parent
commit
29c7113dd7
1 changed files with 2 additions and 0 deletions
  1. 2 0
      obs/obs-app.cpp

+ 2 - 0
obs/obs-app.cpp

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