aboutsummaryrefslogtreecommitdiff
path: root/guilib
diff options
context:
space:
mode:
authorjmarshallnz <jmarshallnz@svn>2010-03-21 08:33:09 +0000
committerjmarshallnz <jmarshallnz@svn>2010-03-21 08:33:09 +0000
commit85ec49fcd1f672200a49f32c2d7ba22b87018aa8 (patch)
tree00317dc6f8108880873c9d5bbb647dbe0ba4d2a0 /guilib
parenta9ba46d4e8b93c3d73d212af56c745463e9b775e (diff)
removed: useless debug logging
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@28716 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
Diffstat (limited to 'guilib')
-rw-r--r--guilib/Texture.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/guilib/Texture.cpp b/guilib/Texture.cpp
index 80181b7861..ed21876bd9 100644
--- a/guilib/Texture.cpp
+++ b/guilib/Texture.cpp
@@ -154,7 +154,6 @@ bool CBaseTexture::LoadFromFile(const CStdString& texturePath, unsigned int maxW
if (CUtil::GetExtension(texturePath).Equals(".dds"))
{ // special case for DDS images
CDDSImage image;
- CLog::Log(LOGDEBUG, "%s - loading dds file: %s", __FUNCTION__, texturePath.c_str());
image.ReadFile(texturePath);
Update(image.GetWidth(), image.GetHeight(), 0, image.GetFormat(), image.GetData(), false);
return true;