GUI: fix N163 initial chan count mismatch

This commit is contained in:
tildearrow 2025-12-26 18:25:50 -05:00
parent 34b06855cd
commit 03bdabf7a6

View file

@ -1256,7 +1256,7 @@ bool FurnaceGUI::drawSysConf(int chan, int sysPos, DivSystem type, DivConfig& fl
}
case DIV_SYSTEM_N163: {
int clockSel=flags.getInt("clockSel",0);
int channels=flags.getInt("channels",0)+1;
int channels=flags.getInt("channels",7)+1;
bool multiplex=flags.getBool("multiplex",false);
bool lenCompensate=flags.getBool("lenCompensate",false);