mirror of
https://github.com/tildearrow/furnace.git
synced 2025-01-03 22:21:09 +00:00
prepare to add compatibility flags
This commit is contained in:
parent
8ccd465a1b
commit
67b47b43b2
1 changed files with 5 additions and 1 deletions
|
@ -105,6 +105,9 @@ struct DivSong {
|
||||||
bool customTempo;
|
bool customTempo;
|
||||||
int hz, patLen, ordersLen, insLen, waveLen, sampleLen;
|
int hz, patLen, ordersLen, insLen, waveLen, sampleLen;
|
||||||
|
|
||||||
|
// compatibility flags
|
||||||
|
bool limitSlides; // limit slide range
|
||||||
|
|
||||||
DivOrders orders;
|
DivOrders orders;
|
||||||
std::vector<DivInstrument*> ins;
|
std::vector<DivInstrument*> ins;
|
||||||
DivChannelData pat[DIV_MAX_CHANS];
|
DivChannelData pat[DIV_MAX_CHANS];
|
||||||
|
@ -145,7 +148,8 @@ struct DivSong {
|
||||||
ordersLen(1),
|
ordersLen(1),
|
||||||
insLen(0),
|
insLen(0),
|
||||||
waveLen(0),
|
waveLen(0),
|
||||||
sampleLen(0) {
|
sampleLen(0),
|
||||||
|
limitSlides(false) {
|
||||||
for (int i=0; i<32; i++) {
|
for (int i=0; i<32; i++) {
|
||||||
system[i]=DIV_SYSTEM_NULL;
|
system[i]=DIV_SYSTEM_NULL;
|
||||||
systemVol[i]=64;
|
systemVol[i]=64;
|
||||||
|
|
Loading…
Reference in a new issue