Skip to content

Commit 5bbb147

Browse files
committed
Added --nofont to help
1 parent e479995 commit 5bbb147

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/TerminalGraphics/NoGui.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
class NoGui {
55
private:
6-
float RefreshTime = 1; //sec (0 == no Refresh)
6+
float RefreshTime = 5; //sec (0 == no Refresh)
77
bool ClearTerminal = true;
88
GetStats Stats;
99
public:

src/main.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@ int main(int argc, char **argv) {
2525
UseFont = false;
2626
} else if (arg == "--help") {
2727
std::cout << "--universeid / --unid # Use To Set Universe ID\n"
28-
<< "--nogui # Uses Terminal As Output (def refresh 1 sec, clears screen)\n";
28+
<< "--nogui # Uses Terminal As Output (def refresh 1 sec, clears screen)\n"
29+
<< "--nofont # Makes Gui Mode Not Load Font\n";
2930
return 0;
3031
}
3132
}

0 commit comments

Comments
 (0)