Skip to content

Commit d1f65b1

Browse files
Mignarigpedro
authored andcommitted
Do not draw hook indicators in far zoom. (#229)
1 parent d5f2c0c commit d1f65b1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/map_drawer.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1220,7 +1220,7 @@ void MapDrawer::BlitItem(int& draw_x, int& draw_y, const Position& pos, const It
12201220
}
12211221
}
12221222

1223-
if(options.show_hooks && (it.hookSouth || it.hookEast))
1223+
if(options.show_hooks && (it.hookSouth || it.hookEast) && zoom <= 3.0)
12241224
DrawHookIndicator(draw_x, draw_y, it);
12251225
}
12261226

0 commit comments

Comments
 (0)