allow moving ins/wave/samples up or down

This commit is contained in:
tildearrow 2022-01-11 03:52:11 -05:00
parent 020d278f00
commit 4c5fbc252b
3 changed files with 76 additions and 8 deletions

View file

@ -349,6 +349,16 @@ class DivEngine {
// move order down
void moveOrderDown();
// move thing up
bool moveInsUp(int which);
bool moveWaveUp(int which);
bool moveSampleUp(int which);
// move thing down
bool moveInsDown(int which);
bool moveWaveDown(int which);
bool moveSampleDown(int which);
// play note
void noteOn(int chan, int ins, int note, int vol=-1);