소스 검색

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();
                     j != resources.End(); ++j)
-                    LOGRAW(j->second_->GetName() + "\n");
+                    URHO3D_LOGRAW(j->second_->GetName() + "\n");
             }
         }
     }