Fixing loop logic

This commit is contained in:
Brad Davis 2016-09-21 07:36:58 -07:00
parent c52de6c685
commit 2de7f62b95

View file

@ -745,7 +745,7 @@ private:
if (verb == "loop") {
if (commandParams.length() > 1) {
int maxLoops = commandParams[1].toInt();
if (maxLoops > ++_commandLoops) {
if (maxLoops < ++_commandLoops) {
qDebug() << "Exceeded loop count";
return;
}