mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2024-11-23 21:07:17 +00:00
no title displayed with tour::NOTITLE flag
This commit is contained in:
parent
c11e552318
commit
a6482d00ab
8
help.cpp
8
help.cpp
@ -998,8 +998,12 @@ EX void describeMouseover() {
|
||||
callhooks(hooks_mouseover, c);
|
||||
|
||||
if(mousey < vid.fsize * 3/2 && getcstat == '-' && !instat) getcstat = SDLK_F1;
|
||||
if(tour::on && !tour::texts)
|
||||
mouseovers = XLAT(tour::slides[tour::currentslide].name);
|
||||
if(tour::on && !tour::texts) {
|
||||
if(tour::slides[tour::currentslide].flags & tour::NOTITLE)
|
||||
mouseovers = "";
|
||||
else
|
||||
mouseovers = XLAT(tour::slides[tour::currentslide].name);
|
||||
}
|
||||
}
|
||||
|
||||
EX void showHelp() {
|
||||
|
Loading…
Reference in New Issue
Block a user