mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2024-10-31 19:36:16 +00:00
added option -nomsg
This commit is contained in:
parent
ea22207a28
commit
44ecbccb89
@ -905,6 +905,7 @@ EX ld realradius() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
EX void drawmessage(const string& s, int& y, color_t col) {
|
EX void drawmessage(const string& s, int& y, color_t col) {
|
||||||
|
if(nomsg) return;
|
||||||
int rrad = (int) realradius();
|
int rrad = (int) realradius();
|
||||||
int space;
|
int space;
|
||||||
if(dual::state)
|
if(dual::state)
|
||||||
|
@ -3000,6 +3000,10 @@ EX int read_config_args() {
|
|||||||
PHASEFROM(2);
|
PHASEFROM(2);
|
||||||
nomenukey = true;
|
nomenukey = true;
|
||||||
}
|
}
|
||||||
|
else if(argis("-nomsg")) {
|
||||||
|
PHASEFROM(2);
|
||||||
|
nomsg = true;
|
||||||
|
}
|
||||||
#if MAXMDIM >= 4
|
#if MAXMDIM >= 4
|
||||||
else if(argis("-switch-fpp")) {
|
else if(argis("-switch-fpp")) {
|
||||||
PHASEFROM(2);
|
PHASEFROM(2);
|
||||||
|
Loading…
Reference in New Issue
Block a user