- Add the TLA back. I still think it is useless but I guess even in R5 the files

included the extension.



git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@26979 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Bruno G. Albuquerque 2008-08-15 14:06:15 +00:00
parent 51bc54b1bf
commit 2bf20e253b

View File

@ -599,14 +599,14 @@ Volume::Mount(const char* device)
if (text.titles[i] != NULL) {
if (text.artists[i] != NULL) {
snprintf(title, sizeof(title), "%02ld. %s - %s", track,
snprintf(title, sizeof(title), "%02ld. %s - %s.wav", track,
text.artists[i], text.titles[i]);
} else {
snprintf(title, sizeof(title), "%02ld. %s", track,
snprintf(title, sizeof(title), "%02ld. %s.wav", track,
text.titles[i]);
}
} else
snprintf(title, sizeof(title), "Track %02ld", track);
snprintf(title, sizeof(title), "Track %02ld.wav", track);
// remove '/' and '\n' from title
for (int32 j = 0; title[j]; j++) {