diff options
Diffstat (limited to 'src/fontengine.cpp')
-rw-r--r-- | src/fontengine.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fontengine.cpp b/src/fontengine.cpp index f881701e0..55ff001e7 100644 --- a/src/fontengine.cpp +++ b/src/fontengine.cpp @@ -122,7 +122,7 @@ void FontEngine::cleanCache() for (std::map<unsigned int, irr::gui::IGUIFont*>::iterator iter = m_font_cache[i].begin(); - iter != m_font_cache[i].end(); iter++) { + iter != m_font_cache[i].end(); ++iter) { iter->second->drop(); iter->second = NULL; } |