mirror of https://github.com/AxioDL/amuse.git
Fix support for loading RAW .son files
This commit is contained in:
parent
127aa283e9
commit
c216f3d721
|
@ -636,6 +636,12 @@ struct AppCallback : boo::IApplicationCallback
|
||||||
else
|
else
|
||||||
Log.report(logvisor::Fatal, "unable to find Song %d", userSel);
|
Log.report(logvisor::Fatal, "unable to find Song %d", userSel);
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
m_arrData = &songs[0].second;
|
||||||
|
m_groupId = m_arrData->m_groupId;
|
||||||
|
m_setupId = m_arrData->m_setupId;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Get group selection from user */
|
/* Get group selection from user */
|
||||||
|
|
Loading…
Reference in New Issue