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

an option to not display default help

This commit is contained in:
Zeno Rogue
2023-03-25 09:24:47 +01:00
parent 7e79661ce0
commit 08bf3fe3d6
4 changed files with 15 additions and 3 deletions

View File

@@ -5690,7 +5690,7 @@ EX void emptyscreen() {
drawqueue();
}
EX bool nohelp;
EX int nohelp;
EX bool no_find_player;
EX void normalscreen() {
@@ -5836,7 +5836,7 @@ EX void drawscreen() {
color_t col = linf[cwt.at->land].color;
if(cwt.at->land == laRedRock) col = 0xC00000;
if(titlecolor) col = titlecolor;
if(!nohelp)
if(nohelp != 1)
displayfr(vid.xres/2, vid.fsize, 2, vid.fsize, mouseovers, col, 8);
#endif