fix gcc-2.95 compilation errors
git-svn-id: https://svn.musicpd.org/mpd/trunk@172 09075e82-0dd4-0310-85a5-a0d7c8717e4f
This commit is contained in:
@@ -402,17 +402,19 @@ float getPlayerCrossFade() {
|
||||
}
|
||||
|
||||
void setPlayerCrossFade(float crossFadeInSeconds) {
|
||||
PlayerControl * pc;
|
||||
if(crossFadeInSeconds<0) crossFadeInSeconds = 0;
|
||||
|
||||
PlayerControl * pc = &(getPlayerData()->playerControl);
|
||||
pc = &(getPlayerData()->playerControl);
|
||||
|
||||
pc->crossFade = crossFadeInSeconds;
|
||||
}
|
||||
|
||||
void setPlayerSoftwareVolume(int volume) {
|
||||
PlayerControl * pc;
|
||||
volume = (volume>100) ? 100 : (volume<0 ? 0 : volume);
|
||||
|
||||
PlayerControl * pc = &(getPlayerData()->playerControl);
|
||||
pc = &(getPlayerData()->playerControl);
|
||||
|
||||
pc->softwareVolume = volume;
|
||||
}
|
||||
|
Reference in New Issue
Block a user