Fixed minor print problem where the type was printed instead of the GPU name

This commit is contained in:
n00mkrad
2021-08-20 13:41:56 +02:00
parent 2bdc602564
commit f6ebe00d0a

View File

@@ -256,7 +256,7 @@ namespace Flowframes.OS
if (property.Name == "Description")
{
gpus.Add(property.Value.ToString());
Logger.Log("[GetGpus] Found GPU: " + gpus, true);
Logger.Log($"[GetGpus] Found GPU: {property.Value}", true);
}
}
}