diff options
author | jmarshallnz <jmarshallnz@svn> | 2010-08-04 06:15:09 +0000 |
---|---|---|
committer | jmarshallnz <jmarshallnz@svn> | 2010-08-04 06:15:09 +0000 |
commit | 6b11fc6c0a12c4b7f53dbb2ed5026f25aa6b271f (patch) | |
tree | 9f69e6fe30772cec8c2f675eaeb16f31ef682985 | |
parent | 1289a304b20fda20fa1a6765b69b3c8c731b0473 (diff) |
fixed: use full path when logging texture lookups to save confusion
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@32474 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
-rw-r--r-- | xbmc/GUILargeTextureManager.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xbmc/GUILargeTextureManager.cpp b/xbmc/GUILargeTextureManager.cpp index b5f0061f69..faa00be6e7 100644 --- a/xbmc/GUILargeTextureManager.cpp +++ b/xbmc/GUILargeTextureManager.cpp @@ -66,7 +66,7 @@ bool CImageLoader::DoWork() m_texture = NULL; } else if (CTimeUtils::GetTimeMS() - start > 100) - CLog::Log(LOGDEBUG, "%s - took %d ms to load %s", __FUNCTION__, CTimeUtils::GetTimeMS() - start, m_path.c_str()); + CLog::Log(LOGDEBUG, "%s - took %d ms to load %s", __FUNCTION__, CTimeUtils::GetTimeMS() - start, loadPath.c_str()); } return true; |