diff options
author | jmarshallnz <jmarshallnz@svn> | 2009-09-24 01:04:35 +0000 |
---|---|---|
committer | jmarshallnz <jmarshallnz@svn> | 2009-09-24 01:04:35 +0000 |
commit | 9cffa27f00de6c87ee6eafbf5531a620e2840c89 (patch) | |
tree | e650cdc22b791e6aa9d04d2a0191f938471f6156 /guilib/GUITexture.h | |
parent | 7d4c7b70bff223fdd55aa9713466071735039576 (diff) |
removed: FRECT struct - use CRect instead.
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@23127 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
Diffstat (limited to 'guilib/GUITexture.h')
-rw-r--r-- | guilib/GUITexture.h | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/guilib/GUITexture.h b/guilib/GUITexture.h index 33fe251879..aa60f5a630 100644 --- a/guilib/GUITexture.h +++ b/guilib/GUITexture.h @@ -35,14 +35,6 @@ typedef uint32_t color_t; -struct FRECT -{ - float left; - float top; - float right; - float bottom; -}; - // image alignment for <aspect>keep</aspect>, <aspect>scale</aspect> or <aspect>center</aspect> #define ASPECT_ALIGN_CENTER 0 #define ASPECT_ALIGN_LEFT 1 @@ -83,7 +75,7 @@ public: CTextureInfo(const CStdString &file); void operator=(const CTextureInfo &right); bool useLarge; - FRECT border; // scaled - unneeded if we get rid of scale on load + CRect border; // scaled - unneeded if we get rid of scale on load int orientation; // orientation of the texture (0 - 7 == EXIForientation - 1) CStdString diffuse; // diffuse overlay texture CStdString filename; // main texture file |