From e1cb484fe66410e45363f29b167fedf19f236ded Mon Sep 17 00:00:00 2001 From: Lars-Dominik Braun Date: Tue, 5 Aug 2008 13:24:01 +0200 Subject: Show flags (shared, quickmix) in station selector --- src/main.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'src/main.c') 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++; } -- cgit v1.2.3