diff options
author | Lars-Dominik Braun <PromyLOPh@gmail.com> | 2008-08-05 13:24:01 +0200 |
---|---|---|
committer | Lars-Dominik Braun <PromyLOPh@gmail.com> | 2008-08-05 13:24:01 +0200 |
commit | e1cb484fe66410e45363f29b167fedf19f236ded (patch) | |
tree | f2aced47c96f23d33240d15af8e4451de1e0fcef /src | |
parent | 1e8643259a915b05e010bebb6f28999e69e223d4 (diff) | |
download | pianobar-e1cb484fe66410e45363f29b167fedf19f236ded.tar.gz pianobar-e1cb484fe66410e45363f29b167fedf19f236ded.tar.bz2 pianobar-e1cb484fe66410e45363f29b167fedf19f236ded.zip |
Show flags (shared, quickmix) in station selector
Diffstat (limited to 'src')
-rw-r--r-- | src/main.c | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -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++; } |