From 67b47b43b272980b4a87bd1698f5165123e26a25 Mon Sep 17 00:00:00 2001 From: tildearrow Date: Sat, 22 Jan 2022 15:30:23 -0500 Subject: [PATCH] prepare to add compatibility flags --- src/engine/song.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/engine/song.h b/src/engine/song.h index 90f3de2de..f663d6cc2 100644 --- a/src/engine/song.h +++ b/src/engine/song.h @@ -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 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;