home · contact · privacy
Client: Scrolling toggles player auto-focus off.
[plomrogue] / src / client / map.c
index af2f57c9621d4eb20fd8721c40d4425ac5662a95..7b4693c7f38d6ac7084ac95cf41313621206aa36 100644 (file)
@@ -9,6 +9,7 @@
 
 extern void map_scroll(char d)
 {
+    world.focus_each_turn = 0;
     struct Win * win = get_win_by_id('m');
     uint16_t offset;
     if (('8' == d || '2' == d) && world.map.length > win->frame_size.y)