1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-11-30 20:08:06 +00:00

DIALOG_OFFMAP now moves the menu to sidescreen even if centered_menus if on

This commit is contained in:
Zeno Rogue
2025-11-11 18:47:00 +01:00
parent 4cc066e6c4
commit 91d5b1072a

View File

@@ -1588,7 +1588,7 @@ EX void calcparam() {
if(tour::on && (tour::slides[tour::currentslide].flags & tour::SIDESCREEN) && ok)
current_display->sidescreen = true;
#endif
if((cmode & sm::DIALOG_OFFMAP) && !centered_menus && vid.xres > vid.yres * 11/10)
if((cmode & sm::DIALOG_OFFMAP) && vid.xres > vid.yres * 11/10)
current_display->sidescreen = true;
if(current_display->sidescreen) cd->xcenter = vid.yres/2;