fix shadowed stuff that in reality was case sensitive naming of variables but sucks for me\!

git-svn-id: file:///home/bas/coolstream_public_svn/THIRDPARTY/applications/neutrino-experimental@116 e54a6e83-5905-42d5-8d5c-058d10e6a962
This commit is contained in:
mws
2009-12-22 15:41:49 +00:00
parent 148c0a771a
commit 69928c641b
3 changed files with 112 additions and 112 deletions

View File

@@ -50,7 +50,7 @@ public:
///< If Color is not yet contained in this palette, it will be added if
///< there is a free slot. If the color can't be added to this palette,
///< the closest existing color will be returned.
tColor Color(int Index) const { return Index < maxColors ? color[Index] : 0; }
tColor Color(int pIndex) const { return pIndex < maxColors ? color[pIndex] : 0; }
///< Returns the color at the given Index. If Index is outside the valid
///< range, 0 will be returned.
void SetBpp(int Bpp);