highlight cur row instead of next one on playback
This commit is contained in:
parent
1778362933
commit
5a0a9db9c3
3 changed files with 19 additions and 3 deletions
|
|
@ -303,7 +303,7 @@ class DivEngine {
|
|||
bool systemsRegistered;
|
||||
bool hasLoadedSomething;
|
||||
int softLockCount;
|
||||
int subticks, ticks, curRow, curOrder, remainingLoops, nextSpeed;
|
||||
int subticks, ticks, curRow, curOrder, prevRow, prevOrder, remainingLoops, nextSpeed;
|
||||
size_t curSubSongIndex;
|
||||
double divider;
|
||||
int cycles;
|
||||
|
|
@ -935,6 +935,8 @@ class DivEngine {
|
|||
ticks(0),
|
||||
curRow(0),
|
||||
curOrder(0),
|
||||
prevRow(0),
|
||||
prevOrder(0),
|
||||
remainingLoops(-1),
|
||||
nextSpeed(3),
|
||||
curSubSongIndex(0),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue