mirror of
https://github.com/ole00/afterburner.git
synced 2024-11-26 03:49:18 +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() {
|
static void printGalTypes() {
|
||||||
int i;
|
int i;
|
||||||
for (i = 1; i < sizeof(galinfo) / sizeof(galinfo[0]); i++) {
|
for (i = 1; i < sizeof(galinfo) / sizeof(galinfo[0]); i++) {
|
||||||
|
if (i % 8 == 1) {
|
||||||
|
printf("\n\t");
|
||||||
|
} else
|
||||||
if (i > 1) {
|
if (i > 1) {
|
||||||
printf(" ");
|
printf(" ");
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user