mirror of
https://github.com/antebudimir/tempus.git
synced 2026-01-01 18:03:33 +00:00
fix: deleted an irrelevant minus sign
This commit is contained in:
parent
f413b5d498
commit
c81bfe1457
1 changed files with 1 additions and 1 deletions
|
|
@ -102,6 +102,6 @@ public class ReplayGainUtil {
|
||||||
}
|
}
|
||||||
|
|
||||||
private static void setReplayGain(ExoPlayer player, float gain) {
|
private static void setReplayGain(ExoPlayer player, float gain) {
|
||||||
player.setVolume((float) Math.pow(10f, -gain / 20f));
|
player.setVolume((float) Math.pow(10f, gain / 20f));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue