Fixed Asylum Music Format panning effect

CQTexperiment
Chris Moeller 2013-10-07 08:10:21 -07:00
parent 15c545b10d
commit e1fc6da376
1 changed files with 7 additions and 0 deletions

View File

@ -72,6 +72,13 @@ static int it_asy_read_pattern( IT_PATTERN *pattern, DUMBFILE *f, unsigned char
}
_dumb_it_xm_convert_effect( buffer[ pos + 2 ], buffer[ pos + 3 ], entry, 1 );
// fixup
switch ( entry->effect ) {
case IT_SET_PANNING:
entry->effectvalue <<= 1;
break;
}
if ( entry->mask ) ++entry;
}