mirror of
https://github.com/tildearrow/furnace.git
synced 2024-12-29 02:51:24 +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;
|
||||
int hz, patLen, ordersLen, insLen, waveLen, sampleLen;
|
||||
|
||||
// compatibility flags
|
||||
bool limitSlides; // limit slide range
|
||||
|
||||
DivOrders orders;
|
||||
std::vector<DivInstrument*> ins;
|
||||
DivChannelData pat[DIV_MAX_CHANS];
|
||||
|
@ -145,7 +148,8 @@ struct DivSong {
|
|||
ordersLen(1),
|
||||
insLen(0),
|
||||
waveLen(0),
|
||||
sampleLen(0) {
|
||||
sampleLen(0),
|
||||
limitSlides(false) {
|
||||
for (int i=0; i<32; i++) {
|
||||
system[i]=DIV_SYSTEM_NULL;
|
||||
systemVol[i]=64;
|
||||
|
|
Loading…
Reference in a new issue