aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2024-07-17 18:04:22 +0200
committerdec05eba <dec05eba@protonmail.com>2024-07-17 18:04:22 +0200
commit57fdf3e7e6c0b4c7d2c7693c1dc92fd8e3e9bfe3 (patch)
tree170944e7215ebea28d73041fb8960f3586139a25 /src
parent26deafd7dbf01493ebbd23357c5c3b29c56c6266 (diff)
Better info output
Diffstat (limited to 'src')
-rw-r--r--src/main.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main.cpp b/src/main.cpp
index 48bf13c..f013a99 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:
- puts("amd");
+ printf("gpu amd\n");
break;
case GSR_GPU_VENDOR_INTEL:
- puts("intel");
+ printf("gpu intel\n");
break;
case GSR_GPU_VENDOR_NVIDIA:
- puts("nvidia");
+ printf("gpu nvidia\n");
break;
}
}