Prepare for backward and bi-directional loop

This commit is contained in:
cam900 2022-08-11 22:21:54 +09:00
parent da8f7dabd5
commit d44f5f0b2b
27 changed files with 418 additions and 123 deletions

View file

@ -353,14 +353,16 @@ class DivEngine {
struct SamplePreview {
int sample;
int wave;
unsigned int pos;
int pos;
int pBegin, pEnd;
bool dir;
SamplePreview():
sample(-1),
wave(-1),
pos(0),
pBegin(-1),
pEnd(-1) {}
pEnd(-1),
dir(false) {}
} sPreview;
short vibTable[64];