Advertisement
Guest User

Untitled

a guest
Aug 1st, 2015
243
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.33 KB | None | 0 0
  1.         MenuOption musicVolumeOption = new MenuOption(musicVolumeName, new Action("changeVolume"){
  2.             @Override
  3.             public void execute() {
  4.                 Console.changeMusicVolume((((int)(pref.getFloat("music", 0.5f) * 10) + 1) % 11) / 10f);
  5.                 pref.flush();
  6.             }
  7.         });
  8.         musicVolumeOption.setValue((int)(pref.getFloat("music", 0.5f) * 100) + "%");
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement