diff options
author | dec05eba <dec05eba@protonmail.com> | 2024-07-17 18:17:23 +0200 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2024-07-17 18:17:23 +0200 |
commit | 705abeff3036b3284541125281ab7c065095c664 (patch) | |
tree | cc55c192864154fd0f3732c8e50ca2c6179bf58c /src/main.cpp | |
parent | 57fdf3e7e6c0b4c7d2c7693c1dc92fd8e3e9bfe3 (diff) |
vendor instead of gpu
Diffstat (limited to 'src/main.cpp')
-rw-r--r-- | src/main.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main.cpp b/src/main.cpp index f013a99..74fdaed 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1603,13 +1603,13 @@ static void list_system_info(bool wayland) { static void list_gpu_info(gsr_egl *egl) { switch(egl->gpu_info.vendor) { case GSR_GPU_VENDOR_AMD: - printf("gpu amd\n"); + printf("vendor amd\n"); break; case GSR_GPU_VENDOR_INTEL: - printf("gpu intel\n"); + printf("vendor intel\n"); break; case GSR_GPU_VENDOR_NVIDIA: - printf("gpu nvidia\n"); + printf("vendor nvidia\n"); break; } } |