[v0.99][PPC] Fix printer in PPC to print using the whole terminal width

This commit is contained in:
Dr-Noob
2021-08-23 09:08:16 +02:00
parent 4af1651306
commit 6a9d30ee37

View File

@@ -637,7 +637,7 @@ bool print_cpufetch_ppc(struct cpuInfo* cpu, STYLE s, struct color** cs, struct
longest_attribute = longest_attribute_length(art, attribute_fields);
}
print_ascii_generic(art, longest_attribute, term->w - art->art->width, attribute_fields);
print_ascii_generic(art, longest_attribute, term->w, attribute_fields);
return true;
}