summaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/main.c b/src/main.c
index 744c731..4597e91 100644
--- a/src/main.c
+++ b/src/main.c
@@ -336,9 +336,15 @@ int main (int argc, char **argv) {
}
}
if (curSong != NULL) {
- printf ("\"%s\" by \"%s\"%s\n", curSong->title,
+ PianoStation_t *realStation =
+ PianoFindStationById (ph.stations,
+ curSong->stationId);
+ printf ("\"%s\" by \"%s\"%s%s%s\n", curSong->title,
curSong->artist, (curSong->rating ==
- PIANO_RATE_LOVE) ? " (Loved)" : "");
+ PIANO_RATE_LOVE) ? " (Loved)" : "",
+ curStation->isQuickMix ? " @ ": "",
+ curStation->isQuickMix ? realStation->name :
+ "");
/* setup artist and song name for scrobbling (curSong
* may be NULL later) */
WardrobeSongInit (&scrobbleSong);