actually fix feedback confilcts

This commit is contained in:
Eknous-P 2025-05-20 23:36:37 +04:00 committed by tildearrow
parent f627b5774a
commit 8353f76469

View file

@ -1542,7 +1542,7 @@ int DivPlatformGenesis::dispatch(DivCommand c) {
case DIV_CMD_FM_ALG: case DIV_CMD_FM_ALG:
if (c.value>7) break; if (c.value>7) break;
chan[c.chan].state.alg=c.value&7; chan[c.chan].state.alg=c.value&7;
rWrite(ADDR_FB_ALG+chanOffs[c.chan], (chan[c.chan].state.fb&7<<3)|(chan[c.chan].state.alg&7)); rWrite(ADDR_FB_ALG+chanOffs[c.chan],(chan[c.chan].state.alg&7)|(chan[c.chan].state.fb<<3));
default: default:
//printf("WARNING: unimplemented command %d\n",c.cmd); //printf("WARNING: unimplemented command %d\n",c.cmd);
break; break;