mirror of
https://github.com/ole00/afterburner.git
synced 2024-11-22 06:32:01 +00:00
PC app: format the list of GAL names
Up to 8 GAL names on the same line.
This commit is contained in:
parent
b733cd5e6a
commit
5621df2f1f
@ -157,6 +157,9 @@ static char sendGenericCommand(const char* command, const char* errorText, int m
|
||||
static void printGalTypes() {
|
||||
int i;
|
||||
for (i = 1; i < sizeof(galinfo) / sizeof(galinfo[0]); i++) {
|
||||
if (i % 8 == 1) {
|
||||
printf("\n\t");
|
||||
} else
|
||||
if (i > 1) {
|
||||
printf(" ");
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user