Fixed Listener::GetGlobalVolume returning wrong values

This commit is contained in:
Laurent Gomila 2011-09-08 08:16:37 +02:00
parent ecaafa9a18
commit dad362bf69

View File

@ -48,7 +48,7 @@ float Listener::GetGlobalVolume()
float volume = 0.f;
ALCheck(alGetListenerf(AL_GAIN, &volume));
return volume;
return volume * 100;
}