1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-11-13 12:17:10 +00:00

do not use emptyscreen. Use gamescreen but with NOSCR

This commit is contained in:
Zeno Rogue
2025-08-25 21:51:57 +02:00
parent 02ba3ee404
commit 6b30441ea1
9 changed files with 29 additions and 35 deletions

View File

@@ -479,6 +479,8 @@ EX namespace ss {
}
EX void slideshow_menu() {
cmode = sm::VR_MENU | sm::NOSCR;
gamescreen();
dialog::init(XLAT("slideshows"), forecolor, 150, 100);
for_all_slideshows([] (string title, slide *sl, char ch) {
dialog::addBoolItem(title, wts == sl, ch);
@@ -491,6 +493,9 @@ EX namespace ss {
EX void showMenu() {
if(!wts) wts = slides;
cmode = sm::VR_MENU | sm::NOSCR;
gamescreen();
dialog::init(XLAT("slides"), forecolor, 150, 100);
string cftrans, cftransbuild;