Replaced equal with correct non-equal sign.

This commit is contained in:
Thomas Lichtenegger
2017-06-23 11:56:12 +02:00
parent ed0cbc50a7
commit 44e78b5cc1

View File

@ -207,7 +207,7 @@ void species::reAllocMyArrays() const
void species::execute()
{
loopCounter_++;
if (loopCounter_ % Nevery_ == 0)
if (loopCounter_ % Nevery_ != 0)
{
return;
}