really allow 8 effect columns

third time is the charm
This commit is contained in:
tildearrow 2022-01-19 17:34:20 -05:00
parent 6b2819019c
commit f39e522e7e
4 changed files with 5 additions and 5 deletions

View file

@ -11,7 +11,7 @@
#include <queue>
#define DIV_VERSION "0.4.5"
#define DIV_ENGINE_VERSION 25
#define DIV_ENGINE_VERSION 26
enum DivStatusView {
DIV_STATUS_NOTHING=0,

View file

@ -3,7 +3,7 @@
static DivPattern emptyPat;
DivPattern::DivPattern() {
memset(data,-1,256*16*sizeof(short));
memset(data,-1,256*32*sizeof(short));
for (int i=0; i<256; i++) {
data[i][0]=0;
data[i][1]=0;

View file

@ -1,7 +1,7 @@
#include "safeReader.h"
struct DivPattern {
short data[256][16];
short data[256][32];
SafeReader* compile(int len=256, int fxRows=1);
DivPattern();
};