Backwards song navigation while editing.

Co-authored-by: sigonasr2 <sigonasr2@gmail.com>
main
sigonasr2, Sig, Sigo 3 years ago
parent 2ad46ea580
commit fadbf89f1e
  1. 4
      LLSIG/src/main/java/LLSIG/LLSIG.java

@ -315,9 +315,9 @@ public class LLSIG implements KeyListener{
case KeyEvent.VK_BACK_SLASH:{
if (METRONOME) {
testOffset=musicPlayer.getPlayPosition();
beatNumber=0;
beatNumber=Math.max(0,beatNumber-12);
}
musicPlayer.seek(148900);
musicPlayer.seek((long)(Math.floor(musicPlayer.getPlayPosition()-(beatDelay*12))));
}break;
case KeyEvent.VK_S:{lane=1;}break;
case KeyEvent.VK_D:{lane=2;}break;

Loading…
Cancel
Save