fixed bug in textured cache

This commit is contained in:
fluxgen 2004-01-02 22:54:29 +00:00
parent a5be2ef67d
commit 0132b31f4e

View file

@ -22,7 +22,7 @@
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
// DEALINGS IN THE SOFTWARE.
// $Id: ImageControl.cc,v 1.8 2004/01/02 22:19:39 fluxgen Exp $
// $Id: ImageControl.cc,v 1.9 2004/01/02 22:54:29 fluxgen Exp $
#include "ImageControl.hh"
@ -157,10 +157,12 @@ Pixmap ImageControl::searchCache(unsigned int width, unsigned int height,
CacheList::iterator it = cache.begin();
CacheList::iterator it_end = cache.end();
for (; it != it_end; ++it) {
if ((*it)->texture_pixmap = text.pixmap().drawable() &&
(*it)->width == width && (*it)->height == height)
if ((*it)->texture_pixmap == text.pixmap().drawable() &&
(*it)->width == width && (*it)->height == height) {
(*it)->count++;
return (*it)->pixmap;
}
}
return None;
}