Hi Ken, Two questions about KDM: 1. Is there a limitation an WAVES.KWV instrument\sound can be? 2. Is there a way to make a song play only once?
Awesoken at
Re: Two questions about KDM
//You will find these limits at the top of KDMENG.C: #define NUMCHANNELS 16 //Max simultaneous instruments playing #define MAXWAVES 256 //Max instruments (samples) defined in WAVES.KWV #define MAXTRACKS 256 //Max instruments used in a song #define MAXNOTES 8192 //Max notes defined in song (on and off)
The only one here you can change easily is NUMCHANNELS. The rest would require a recompiling of KDM.EXE to allow bigger songs.
To make the music play once, put this right after musicon(): extern long musicrepeat; musicrepeat = 0;