Skip to content

Commit

Permalink
fix hobbes' frustration
Browse files Browse the repository at this point in the history
  • Loading branch information
Warboy1982 committed Aug 14, 2016
1 parent b22f5b3 commit eaf8848
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Geoscape/Globe.cpp
Expand Up @@ -849,10 +849,10 @@ void Globe::blink()
{
_blink = -_blink;

for (size_t i = 0; i < _markerSet->getTotalFrames(); ++i)
for (std::map<int, Surface*>::iterator i = _markerSet->getFrames()->begin(); i != _markerSet->getFrames()->end(); ++i)
{
if (i != CITY_MARKER)
_markerSet->getFrame(i)->offset(_blink);
if (i->first != CITY_MARKER)
i->second->offset(_blink);
}

drawMarkers();
Expand Down

0 comments on commit eaf8848

Please sign in to comment.