Fix crash when no nvidia GPU is detected

This commit is contained in:
romner
2023-05-14 17:40:50 +02:00
parent 0e0025a2c3
commit 2d27f2ff61
3 changed files with 3 additions and 3 deletions

View File

@@ -103,7 +103,7 @@ namespace Term {
bool mem = boxes.find("mem") != string::npos;
bool net = boxes.find("net") != string::npos;
bool proc = boxes.find("proc") != string::npos;
bool gpu = boxes.find("gpu") != string::npos;
bool gpu = boxes.find("gpu") != string::npos and Gpu::Nvml::initialized;
int width = 0;
if (mem) width = Mem::min_width;
else if (net) width = Mem::min_width;