Merge remote-tracking branch 'creideiki/master'

Mostly for the .gitignore
This commit is contained in:
Thibault Lemaire
2019-02-09 13:01:38 +01:00
2 changed files with 24 additions and 0 deletions

View File

@ -741,6 +741,9 @@ void kasfGrowSelectionClear(GrowSelection *ships)
sdword kasfShipsCount(GrowSelection *ships)
{
if (ships == NULL)
return 0;
return ships->selection->numShips;
}