- added Edward-san's 'changemus' submission for printing the currently playing music track.

SVN r2782 (trunk)
This commit is contained in:
Christoph Oelckers 2010-09-15 13:49:11 +00:00
parent d5f9b0874e
commit 4ca21e8e38
1 changed files with 21 additions and 9 deletions

View File

@ -2627,6 +2627,18 @@ CCMD (changemus)
} }
S_ChangeMusic (argv[1], argv.argc() > 2 ? atoi (argv[2]) : 0); S_ChangeMusic (argv[1], argv.argc() > 2 ? atoi (argv[2]) : 0);
} }
else
{
const char *currentmus = mus_playing.name.GetChars();
if(currentmus != NULL && *currentmus != 0)
{
Printf ("currently playing %s\n", currentmus);
}
else
{
Printf ("no music playing\n");
}
}
} }
//========================================================================== //==========================================================================