forked from mirror/openmw-tes3mp
Remove an unneeded volume special-case
This commit is contained in:
parent
4944a29b21
commit
3a57746ee4
1 changed files with 1 additions and 4 deletions
|
@ -88,10 +88,7 @@ namespace MWSound
|
|||
if(snd == NULL)
|
||||
throw std::runtime_error(std::string("Failed to lookup sound ")+soundId);
|
||||
|
||||
if(snd->data.volume == 0)
|
||||
volume = 0.0f;
|
||||
else
|
||||
volume *= pow(10.0, (snd->data.volume/255.0f*3348.0 - 3348.0) / 2000.0);
|
||||
volume *= pow(10.0, (snd->data.volume/255.0*3348.0 - 3348.0) / 2000.0);
|
||||
|
||||
if(snd->data.minRange == 0 && snd->data.maxRange == 0)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue