Add failsafe and .song extension

This commit is contained in:
2016-05-31 15:40:09 -07:00
parent 56f1bf7bff
commit 40e808e134
2 changed files with 3 additions and 2 deletions

View File

@@ -107,7 +107,8 @@ static bool IsSongExtension(const char* path, const char*& dotOut)
if (ext)
{
if (!CompareCaseInsensitive(ext, ".son") ||
!CompareCaseInsensitive(ext, ".sng"))
!CompareCaseInsensitive(ext, ".sng") ||
!CompareCaseInsensitive(ext, ".song"))
{
dotOut = ext;
return true;