1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-10-30 13:32:59 +00:00

it is now possible to disable the FPS display

This commit is contained in:
Zeno Rogue
2018-01-25 17:22:50 +01:00
parent 3a52193426
commit 9027a7d6d2
2 changed files with 8 additions and 1 deletions

View File

@@ -98,6 +98,9 @@ int arg::readCommon() {
else if(argis("-nogui")) {
noGUI = true;
}
else if(argis("-nofps")) {
nofps = true;
}
else if(argis("-back")) {
shift(); backcolor = strtol(args(), NULL, 16);
}