Fix code formatting

This commit is contained in:
rh101 2021-10-29 00:09:03 +11:00
parent 9b2b3de565
commit 49fb6f7205
1 changed files with 2 additions and 2 deletions

View File

@ -239,9 +239,9 @@ bool FontAtlasCache::releaseFontAtlas(FontAtlas *atlas)
{
if (atlas->getReferenceCount() == 1)
{
for( auto &item: _atlasMap )
for (auto& item: _atlasMap)
{
if ( item.second == atlas )
if (item.second == atlas)
{
_atlasMap.erase(item.first);
break;