diff options
Diffstat (limited to 'src/volume.c')
-rw-r--r-- | src/volume.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/volume.c b/src/volume.c index c16938042..b99bd9156 100644 --- a/src/volume.c +++ b/src/volume.c @@ -433,9 +433,9 @@ int changeSoftwareVolume(FILE * fp, int change, int rel) { volume_softwareSet = new; /*new = 100.0*(exp(new/50.0)-1)/(M_E*M_E-1)+0.5;*/ - if(new>=100) new = 1000; + if(new>=100) new = 1024; else if(new<=0) new = 0; - else new = 1000.0*(exp(new/25.0)-1)/(54.5981500331F-1)+0.5; + else new = 1024.0*(exp(new/25.0)-1)/(54.5981500331F-1)+0.5; setPlayerSoftwareVolume(new); |