Skip to content

Commit

Permalink
Do not draw hook indicators in far zoom. (#229)
Browse files Browse the repository at this point in the history
  • Loading branch information
Mignari authored and gpedro committed Mar 22, 2018
1 parent d5f2c0c commit d1f65b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/map_drawer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1220,7 +1220,7 @@ void MapDrawer::BlitItem(int& draw_x, int& draw_y, const Position& pos, const It
}
}

if(options.show_hooks && (it.hookSouth || it.hookEast))
if(options.show_hooks && (it.hookSouth || it.hookEast) && zoom <= 3.0)
DrawHookIndicator(draw_x, draw_y, it);
}

Expand Down

0 comments on commit d1f65b1

Please sign in to comment.