Make sure find_cell returns false when no cell is found

This commit is contained in:
Paul Romano 2018-08-31 12:21:00 -05:00
parent 6a739abe52
commit 8b55751d51

View file

@ -243,6 +243,8 @@ find_cell(Particle* p, int search_surf) {
return find_cell(p, 0);
}
}
return found;
}
//==============================================================================