Lynx panning swap

This commit is contained in:
Waldemar Pawlaszek 2022-03-12 12:16:01 +01:00
parent 7971b7323b
commit e775703c44
2 changed files with 3 additions and 3 deletions

View file

@ -435,8 +435,8 @@ public:
case ATTENREG2:
case ATTENREG3:
mRegisterPool[8*4+idx] = value;
mAttenuationLeft[idx] = ( value & 0x0f ) << 2;
mAttenuationRight[idx] = ( value & 0xf0 ) >> 2;
mAttenuationRight[idx] = ( value & 0x0f ) << 2;
mAttenuationLeft[idx] = ( value & 0xf0 ) >> 2;
break;
case MPAN:
mPan = value;