1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-10-20 16:37:40 +00:00

made background screen darkening consistent and optional

This commit is contained in:
Zeno Rogue
2022-07-05 11:51:06 +02:00
parent b3a394c266
commit 75f58766a2
39 changed files with 170 additions and 129 deletions

View File

@@ -918,8 +918,8 @@ EX void load_official_track() {
}
void track_chooser(bool official) {
cmode = 0;
gamescreen(2);
cmode = sm::NOSCR;
gamescreen();
dialog::init(XLAT(official ? "Official tracks" : "Generate a racing track"));
map<char, eLand> landmap;
@@ -959,7 +959,7 @@ void track_chooser(bool official) {
void race_projection() {
cmode = sm::SIDE | sm::MAYDARK;
gamescreen(1);
gamescreen();
dialog::init(XLAT("racing projections"));
@@ -1065,7 +1065,8 @@ void race_projection() {
#if MAXMDIM >= 4
EX void thurston_racing() {
gamescreen(1);
cmode = sm::NOSCR;
gamescreen();
dialog::init(XLAT("racing in Thurston geometries"));
dialog::addBreak(100);
@@ -1119,7 +1120,8 @@ void race_projection() {
void raceconfigurer() {
gamescreen(1);
cmode = sm::SIDE | sm::MAYDARK;
gamescreen();
dialog::init(XLAT("Racing"));