浏览代码

Fix logging in Engine.cpp.

Lasse Öörni 10 年之前
父节点
当前提交
ae52d8ce45
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      Source/Urho3D/Engine/Engine.cpp

+ 1 - 1
Source/Urho3D/Engine/Engine.cpp

@@ -565,7 +565,7 @@ void Engine::DumpResources(bool dumpFileName)
             {
             {
                 for (HashMap<StringHash, SharedPtr<Resource> >::ConstIterator j = resources.Begin();
                 for (HashMap<StringHash, SharedPtr<Resource> >::ConstIterator j = resources.Begin();
                     j != resources.End(); ++j)
                     j != resources.End(); ++j)
-                    LOGRAW(j->second_->GetName() + "\n");
+                    URHO3D_LOGRAW(j->second_->GetName() + "\n");
             }
             }
         }
         }
     }
     }