2
0
Эх сурвалжийг харах

Fixes mistake where GuiInspectorEntityGroup's onAdd doesn't explicitly return true, which can cause problems in some compilers.

Areloch 9 жил өмнө
parent
commit
74a2005d15

+ 2 - 0
Engine/source/gui/editor/inspector/entityGroup.cpp

@@ -41,6 +41,8 @@ bool GuiInspectorEntityGroup::onAdd()
 {
    if (!Parent::onAdd())
       return false;
+
+   return true;
 }
 
 //-----------------------------------------------------------------------------