mirror of
https://github.com/outbackdingo/UltraGrid.git
synced 2026-03-21 12:40:19 +00:00
Various fixes
This commit is contained in:
@@ -32,7 +32,7 @@ char *export_dir = NULL;
|
||||
volatile bool should_exit_receiver = false;
|
||||
|
||||
volatile int log_level = LOG_LEVEL_INFO;
|
||||
bool color_term = (strcmp(getenv("TERM"), "xterm") == 0 || strcmp(getenv("TERM"), "xterm-256color") == 0) && isatty(1) && isatty(2);
|
||||
bool color_term = (getenv("TERM") && (strcmp(getenv("TERM"), "xterm") == 0 || strcmp(getenv("TERM"), "xterm-256color") == 0 || strcmp(getenv("TERM"), "screen") == 0)) && isatty(1) && isatty(2);
|
||||
|
||||
bool ldgm_device_gpu = false;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user