[v0.22] Small various fixes

This commit is contained in:
Dr-Noob
2021-12-28 16:43:11 +01:00
parent 98a70d5c9e
commit 6f555f1b47
5 changed files with 13 additions and 11 deletions

View File

@@ -43,7 +43,7 @@ struct gpu_info* get_gpu_info_intel() {
bool print_gpu_intel(struct gpu_info* gpu) {
if(gpu->vendor != GPU_VENDOR_INTEL) return false;
printf("Intel %s\n", gpu->name);
printf("%s\n", gpu->name);
return true;
}