fix: deleted an irrelevant minus sign

This commit is contained in:
antonio 2023-07-03 09:24:20 +02:00
parent f413b5d498
commit c81bfe1457

View file

@ -102,6 +102,6 @@ public class ReplayGainUtil {
}
private static void setReplayGain(ExoPlayer player, float gain) {
player.setVolume((float) Math.pow(10f, -gain / 20f));
player.setVolume((float) Math.pow(10f, gain / 20f));
}
}