From 18509a78e3e63914f3a5bf80eebc290afbd6ff3e Mon Sep 17 00:00:00 2001 From: Christian Semmler Date: Sat, 10 Feb 2024 12:55:13 -0500 Subject: [PATCH] Fix style --- LEGO1/lego/legoomni/src/common/legoutil.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/LEGO1/lego/legoomni/src/common/legoutil.cpp b/LEGO1/lego/legoomni/src/common/legoutil.cpp index 7fee3aaa..3951f94f 100644 --- a/LEGO1/lego/legoomni/src/common/legoutil.cpp +++ b/LEGO1/lego/legoomni/src/common/legoutil.cpp @@ -143,8 +143,9 @@ void NotifyEntity(const char* p_filename, MxS32 p_entityId, LegoEntity* p_sender while (cursor.Next(world)) { entity = (LegoEntity*) world->Find(atom, p_entityId); - if (entity != NULL) + if (entity != NULL) { break; + } } }