mirror of https://github.com/AxioDL/amuse.git
Merge commit '40e808e'
This commit is contained in:
commit
08de4873f4
|
@ -731,7 +731,7 @@ struct AppCallback : boo::IApplicationCallback
|
||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else if (songs.size() == 1)
|
||||||
{
|
{
|
||||||
m_arrData = &songs[0].second;
|
m_arrData = &songs[0].second;
|
||||||
m_groupId = m_arrData->m_groupId;
|
m_groupId = m_arrData->m_groupId;
|
||||||
|
|
|
@ -107,7 +107,8 @@ static bool IsSongExtension(const char* path, const char*& dotOut)
|
||||||
if (ext)
|
if (ext)
|
||||||
{
|
{
|
||||||
if (!CompareCaseInsensitive(ext, ".son") ||
|
if (!CompareCaseInsensitive(ext, ".son") ||
|
||||||
!CompareCaseInsensitive(ext, ".sng"))
|
!CompareCaseInsensitive(ext, ".sng") ||
|
||||||
|
!CompareCaseInsensitive(ext, ".song"))
|
||||||
{
|
{
|
||||||
dotOut = ext;
|
dotOut = ext;
|
||||||
return true;
|
return true;
|
||||||
|
|
Loading…
Reference in New Issue