Remove unnecessary return value check

This commit is contained in:
WarmUpTill 2021-10-19 20:27:21 +02:00 committed by WarmUpTill
parent 32e2a5f44c
commit b786831f3b

View File

@ -113,7 +113,7 @@ bool Macro::PerformAction()
return false;
}
}
if (ret && _count != std::numeric_limits<int>::max()) {
if (_count != std::numeric_limits<int>::max()) {
_count++;
}
return ret;