mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-06-08 09:24:06 +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);
|
callhooks(hooks_mouseover, c);
|
||||||
|
|
||||||
if(mousey < vid.fsize * 3/2 && getcstat == '-' && !instat) getcstat = SDLK_F1;
|
if(mousey < vid.fsize * 3/2 && getcstat == '-' && !instat) getcstat = SDLK_F1;
|
||||||
if(tour::on && !tour::texts)
|
if(tour::on && !tour::texts) {
|
||||||
mouseovers = XLAT(tour::slides[tour::currentslide].name);
|
if(tour::slides[tour::currentslide].flags & tour::NOTITLE)
|
||||||
|
mouseovers = "";
|
||||||
|
else
|
||||||
|
mouseovers = XLAT(tour::slides[tour::currentslide].name);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
EX void showHelp() {
|
EX void showHelp() {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user