1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-10-30 05:23:00 +00:00

display a hint when player hidden

This commit is contained in:
Zeno Rogue
2022-03-27 19:12:10 +02:00
parent 00d640fa22
commit 14ed4b7603
4 changed files with 8 additions and 2 deletions

View File

@@ -5427,6 +5427,9 @@ EX void normalscreen() {
if(!playerfound && !anims::any_on() && !sphere && !no_find_player && mapeditor::drawplayer)
displayButton(current_display->xcenter, current_display->ycenter, mousing ? XLAT("find the player") : XLAT("press SPACE to find the player"), ' ', 8);
if(!mapeditor::drawplayer && playermoved && !no_find_player)
displayButton(current_display->xcenter, current_display->ycenter, XLAT("move the camera with arrow keys and Home/End"), PSEUDOKEY_NOHINT, 8);
describeMouseover();
}