diff options
Diffstat (limited to 'logo.c')
-rw-r--r-- | logo.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -244,7 +244,7 @@ bool cEnigmaLogoCache::Flush(void) if (!cacheMapM.empty()) { debug("cPluginSkinEnigma::Flush() NON-EMPTY"); // delete bitmaps and clear map - for (std::map<std::string, cBitmap *>::iterator i = cacheMapM.begin(); i != cacheMapM.end(); i++) { + for (std::map<std::string, cBitmap *>::iterator i = cacheMapM.begin(); i != cacheMapM.end(); ++i) { delete((*i).second); } cacheMapM.clear(); |