From 42bfe1315be1a851434c4675a0c2c38863bb8e6c Mon Sep 17 00:00:00 2001 From: dec05eba Date: Sun, 21 Jul 2024 23:58:54 +0200 Subject: Fix gpu vendor check, rename desktop file to same format as flatpak --- src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/main.cpp') diff --git a/src/main.cpp b/src/main.cpp index a86f254..90c642e 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -2456,7 +2456,7 @@ static void parse_gpu_info_line(GsrInfo *gsr_info, const std::string &line) { const StringView attribute_name = {line.c_str(), space_index}; const StringView attribute_value = {line.c_str() + space_index + 1, line.size() - (space_index + 1)}; - if(attribute_name == "gpu") { + if(attribute_name == "vendor") { if(attribute_value == "amd") gsr_info->gpu_info.vendor = GpuVendor::AMD; else if(attribute_value == "intel") -- cgit v1.2.3