Tokelil
01-19-2004, 06:19 PM
In QueueIt I have this code to add all tracks marked in the playlist:
long lngNumOfTracks = QCDCallbacks->Service(opGetNumTracks, 0, 0, 0);
for (int i = 0; i < lngNumOfTracks; i++)
{
long lngTrackState = QCDCallbacks->Service(opGetTrackState, 0, i, 0);
if (lngTrackState != 0)
AddTrack(i);
lngTrackState = 0;
}
It works in 4.11 but not in B69. Nothing has changed in the PDK so is it a bug or something else?
BTW. Im not sure where you want bug reports regarding dev builds. Here in the dev build forum or the bugs forum?
Edit: BTW it works when more than one tracks is marked but not when only one track is marked.
long lngNumOfTracks = QCDCallbacks->Service(opGetNumTracks, 0, 0, 0);
for (int i = 0; i < lngNumOfTracks; i++)
{
long lngTrackState = QCDCallbacks->Service(opGetTrackState, 0, i, 0);
if (lngTrackState != 0)
AddTrack(i);
lngTrackState = 0;
}
It works in 4.11 but not in B69. Nothing has changed in the PDK so is it a bug or something else?
BTW. Im not sure where you want bug reports regarding dev builds. Here in the dev build forum or the bugs forum?
Edit: BTW it works when more than one tracks is marked but not when only one track is marked.