aboutsummaryrefslogtreecommitdiff
path: root/guilib/TextureManager.h
diff options
context:
space:
mode:
authorAlTheKiller <AlTheKiller@svn>2009-09-23 06:04:19 +0000
committerAlTheKiller <AlTheKiller@svn>2009-09-23 06:04:19 +0000
commit0a1b4b92230658c50dd8db8da435456f2098a618 (patch)
tree80de330f18cfed68bad23ed13cd2734290a6fb1b /guilib/TextureManager.h
parentb572b147da974ab22064d4b5030fccda08de90cd (diff)
fixed: LINUX build errors
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@23102 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
Diffstat (limited to 'guilib/TextureManager.h')
-rw-r--r--guilib/TextureManager.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/guilib/TextureManager.h b/guilib/TextureManager.h
index 8907714011..e4c85e8ef2 100644
--- a/guilib/TextureManager.h
+++ b/guilib/TextureManager.h
@@ -80,7 +80,7 @@ public:
const CStdString& GetName() const;
const CTextureArray& GetTexture();
void Dump() const;
- DWORD GetMemoryUsage() const;
+ uint32_t GetMemoryUsage() const;
void Flush();
bool IsEmpty() const;
protected:
@@ -89,7 +89,7 @@ protected:
CStdString m_textureName;
CTextureArray m_texture;
unsigned int m_referenceCount;
- DWORD m_memUsage;
+ uint32_t m_memUsage;
};
/*!
@@ -112,7 +112,7 @@ public:
void ReleaseTexture(const CStdString& strTextureName);
void Cleanup();
void Dump() const;
- DWORD GetMemoryUsage() const;
+ uint32_t GetMemoryUsage() const;
void Flush();
CStdString GetTexturePath(const CStdString& textureName, bool directory = false);
void GetBundledTexturesFromPath(const CStdString& texturePath, std::vector<CStdString> &items);