PC app: format the list of GAL names

Up to 8 GAL names on the same line.
This commit is contained in:
ole00 2024-03-31 14:43:00 +01:00
parent b733cd5e6a
commit 5621df2f1f
1 changed files with 3 additions and 0 deletions

View File

@ -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(" ");
}