dev71 - more compatibility flags for .mod

This commit is contained in:
tildearrow 2022-03-23 23:56:59 -05:00
parent ece34990e5
commit bd36a4ffdc
7 changed files with 89 additions and 31 deletions

View file

@ -42,8 +42,8 @@
#define BUSY_BEGIN_SOFT softLocked=true; isBusy.lock();
#define BUSY_END isBusy.unlock(); softLocked=false;
#define DIV_VERSION "dev70"
#define DIV_ENGINE_VERSION 70
#define DIV_VERSION "dev71"
#define DIV_ENGINE_VERSION 71
// for imports
#define DIV_VERSION_MOD 0xff01
@ -190,6 +190,7 @@ class DivEngine {
bool forceMono;
bool cmdStreamEnabled;
bool softLocked;
bool firstTick;
int softLockCount;
int ticks, curRow, curOrder, remainingLoops, nextSpeed;
double divider;
@ -682,7 +683,8 @@ class DivEngine {
halted(false),
forceMono(false),
cmdStreamEnabled(false),
softLocked(0),
softLocked(false),
firstTick(false),
softLockCount(0),
ticks(0),
curRow(0),