Add some commentary for special series of effects in S3M, XM and IT

This commit is contained in:
KungFuFurby 2025-09-09 18:36:02 -04:00 committed by tildearrow
parent 7a7d381889
commit 3df67fb1b3
3 changed files with 10 additions and 10 deletions

View file

@ -1101,15 +1101,15 @@ bool DivEngine::loadS3M(unsigned char* file, size_t len) {
break;
case 'S': // special...
switch (effectVal>>4) {
case 0x8:
case 0x8: // panning
p->data[readRow][effectCol[chan]++]=0x80;
p->data[readRow][effectCol[chan]++]=(effectVal&15)<<4;
break;
case 0xc:
case 0xc: // note cut
p->data[readRow][effectCol[chan]++]=0xec;
p->data[readRow][effectCol[chan]++]=effectVal&15;
break;
case 0xd:
case 0xd: // note delay
p->data[readRow][effectCol[chan]++]=0xed;
p->data[readRow][effectCol[chan]++]=effectVal&15;
break;