This commit is contained in:
tildearrow 2022-03-06 14:41:00 -05:00
parent 3b8388d90c
commit e10abe0858
1 changed files with 1 additions and 1 deletions

View File

@ -340,7 +340,7 @@ int DivPlatformGB::dispatch(DivCommand c) {
case DIV_CMD_PANNING: {
lastPan&=~(0x11<<c.chan);
if (c.value==0) c.value=0x11;
c.value=((c.value&15)>0)|(((c.value>>4)>0)<<4)
c.value=((c.value&15)>0)|(((c.value>>4)>0)<<4);
lastPan|=c.value<<c.chan;
rWrite(0x25,procMute());
break;