From 6d7363437782df785e8279b418b9954fa368a142 Mon Sep 17 00:00:00 2001 From: Christian Semmler Date: Sun, 24 Mar 2024 17:24:36 -0400 Subject: [PATCH] fix --- LEGO1/lego/legoomni/src/paths/legopathpresenter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LEGO1/lego/legoomni/src/paths/legopathpresenter.cpp b/LEGO1/lego/legoomni/src/paths/legopathpresenter.cpp index 82048534..9ff31ed4 100644 --- a/LEGO1/lego/legoomni/src/paths/legopathpresenter.cpp +++ b/LEGO1/lego/legoomni/src/paths/legopathpresenter.cpp @@ -75,7 +75,7 @@ void LegoPathPresenter::ReadyTickle() if (chunk) { LegoPathController* controller = new LegoPathController(); - if (controller != NULL) { + if (controller == NULL) { EndAction(); } else {