X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=src%2Fclient%2Fmap.h;h=75978c6432d3c05f678bc0f048b3c8973ea1b51a;hb=3dedf6344c941891491773d1cc5d647aa664b218;hp=6cef27edf91801864d138797d2935013c073afdb;hpb=7433f56ec2c6cc51bc497e3c0c67d2fe3e6ab64a;p=plomrogue diff --git a/src/client/map.h b/src/client/map.h index 6cef27e..75978c6 100644 --- a/src/client/map.h +++ b/src/client/map.h @@ -8,12 +8,15 @@ -/* Try changing map window's focus into direction "d" (north = "N" etc.). */ +/* Try changing map window's focus into direction "d" (north = "N" etc.). Unset + * world.focus_each_turn. + */ extern void map_scroll(char d); /* Center map window on player (even if it is non-visible). */ extern void map_center(); - +/* Toggle world.focus_each_turn (auto-centering of map on player each turn). */ +extern void toggle_autofocus(); #endif