summaryrefslogtreecommitdiff
path: root/logo.c
diff options
context:
space:
mode:
Diffstat (limited to 'logo.c')
-rw-r--r--logo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/logo.c b/logo.c
index 119554b..470c5b1 100644
--- a/logo.c
+++ b/logo.c
@@ -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();