summaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/main.c b/src/main.c
index eaa93d5..e2b687c 100644
--- a/src/main.c
+++ b/src/main.c
@@ -102,8 +102,11 @@ PianoStation_t *BarUiSelectStation (PianoHandle_t *ph,
curStation = ph->stations;
while (curStation != NULL) {
- printf ("%2i) %s%s\n", i, curStation->name,
- curStation->useQuickMix ? " (QuickMix)" : "");
+ printf ("%2i) %c%c%c %s\n", i,
+ curStation->useQuickMix ? 'q' : ' ',
+ curStation->isQuickMix ? 'Q' : ' ',
+ !curStation->isCreator ? 'S' : ' ',
+ curStation->name);
curStation = curStation->next;
i++;
}