I bugged cTextCache::Alpha, now it's fixed.

This commit is contained in:
Martín Lucas Golini
2013-10-04 00:43:10 -03:00
parent 31b54a71ec
commit 30bef5d9d8

View File

@@ -85,7 +85,7 @@ const eeColorA& cTextCache::Color() const {
}
void cTextCache::Alpha( const Uint8& alpha ) {
std::size_t s = mText.size();
std::size_t s = mColors.size();
for ( Uint32 i = 0; i < s; i++ ) {
mColors[ i ].Alpha = alpha;
}