NowPlayingPlugin: Added support for MusicBee, fixed Debug build, and updated Winamp SDK.

This commit is contained in:
Birunthan Mohanathas
2011-05-24 18:20:35 +00:00
parent 31e3091e34
commit 2ba2e95736
15 changed files with 1896 additions and 406 deletions

View File

@ -554,12 +554,8 @@ void CPlayerITunes::SetVolume(int volume)
*/
void CPlayerITunes::ChangeVolume(int volume)
{
if (m_Initialized)
{
int newVolume = m_Volume;
newVolume += volume;
m_iTunes->put_SoundVolume(newVolume);
}
volume += m_Volume;
SetVolume(volume);
}
/*