Merge branch 'master' of https://github.com/tildearrow/furnace into scc

This commit is contained in:
cam900 2022-03-14 19:22:31 +09:00
commit 2c6267bd6b
47 changed files with 3473 additions and 205 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;