mirror of
https://github.com/luanti-org/luanti.git
synced 2025-10-13 08:35:20 +02:00
Change i++ to ++i
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user