Browse Source

Update HL1MDLLoader.cpp

Minor findings.
Kim Kulling 5 năm trước cách đây
mục cha
commit
b7e51a38ef
1 tập tin đã thay đổi với 4 bổ sung2 xóa
  1. 4 2
      code/MDL/HalfLife/HL1MDLLoader.cpp

+ 4 - 2
code/MDL/HalfLife/HL1MDLLoader.cpp

@@ -125,12 +125,14 @@ void HL1MDLLoader::release_resources() {
         anim_headers_ = nullptr;
     }
 
-    if (rootnode_children_.size()) {
+    // Root has some children ndoes. so let's proceed them
+    if (!rootnode_children_.empty()) {
         // Here, it means that the nodes were not added to the
         // scene root node. We still have to delete them.
         for (auto it = rootnode_children_.begin(); it != rootnode_children_.end(); ++it) {
-            if (*it)
+            if (*it) {
                 delete *it;
+            }
         }
         // Ensure this happens only once.
         rootnode_children_.clear();