We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e479995 commit 5bbb147Copy full SHA for 5bbb147
src/TerminalGraphics/NoGui.hpp
@@ -3,7 +3,7 @@
3
4
class NoGui {
5
private:
6
- float RefreshTime = 1; //sec (0 == no Refresh)
+ float RefreshTime = 5; //sec (0 == no Refresh)
7
bool ClearTerminal = true;
8
GetStats Stats;
9
public:
src/main.cpp
@@ -25,7 +25,8 @@ int main(int argc, char **argv) {
25
UseFont = false;
26
} else if (arg == "--help") {
27
std::cout << "--universeid / --unid # Use To Set Universe ID\n"
28
- << "--nogui # Uses Terminal As Output (def refresh 1 sec, clears screen)\n";
+ << "--nogui # Uses Terminal As Output (def refresh 1 sec, clears screen)\n"
29
+ << "--nofont # Makes Gui Mode Not Load Font\n";
30
return 0;
31
}
32
0 commit comments