maybe fix freebsd OS crashing

This commit is contained in:
James Seibel
2025-09-20 22:40:53 -05:00
parent 9e7378be63
commit 9564f02283
@@ -76,7 +76,7 @@ public enum EPlatform
{ // For MacOS it should either output "Mac OS X" or "Darwin" depending on the version of MacOS
current = MACOS;
}
else if (osName.startsWith("bsd"))
else if (osName.startsWith("bsd") || osName.startsWith("freebsd"))
{ // Depending on the BSD distro this will be different
current = BSD;
}