Mercurial > audlegacy-plugins
comparison src/sid/xs_fileinfo.c @ 1596:9ad9b3479b38
Actually only use [!] marker in the subtune menu, not the whole info field.
author | Matti Hamalainen <ccr@tnsp.org> |
---|---|
date | Wed, 05 Sep 2007 02:29:16 +0300 |
parents | ff902c317ecf |
children | 15c07b4cc459 |
comparison
equal
deleted
inserted
replaced
1595:a08203b533da | 1596:9ad9b3479b38 |
---|---|
258 xs_pnstrcat(tmpStr, sizeof(tmpStr), | 258 xs_pnstrcat(tmpStr, sizeof(tmpStr), |
259 isSet ? " [*]" : tmpNode->pTitle); | 259 isSet ? " [*]" : tmpNode->pTitle); |
260 isSet = TRUE; | 260 isSet = TRUE; |
261 } | 261 } |
262 | 262 |
263 if (tmpNode->pInfo) { | 263 if (tmpNode->pInfo && isSet) { |
264 xs_pnstrcat(tmpStr, sizeof(tmpStr), | 264 xs_pnstrcat(tmpStr, sizeof(tmpStr), " [!]"); |
265 isSet ? " [!]" : tmpNode->pInfo); | |
266 isSet = TRUE; | 265 isSet = TRUE; |
267 } | 266 } |
268 | 267 |
269 if (!isSet) | 268 if (!isSet) |
270 xs_pnstrcat(tmpStr, sizeof(tmpStr), "---"); | 269 xs_pnstrcat(tmpStr, sizeof(tmpStr), "---"); |