replace libretro-common 19

This commit is contained in:
AZO234 2019-02-28 16:10:34 +09:00
parent eafc21c1b7
commit d950f5c29e

View File

@ -131,7 +131,7 @@ void OPM::SetVolume(int db)
{
db = Min(db, 20);
if (db > -192)
fmvolume = int(16384.0 * pow(10, db / 40.0));
fmvolume = int(16384.0 * pow((double)10, (double)db / 40.0));
else
fmvolume = 0;
}