mirror of
https://github.com/tildearrow/furnace.git
synced 2024-12-03 17:57:26 +00:00
parent
39a5408e4e
commit
99e3c3fa33
1 changed files with 4 additions and 3 deletions
|
@ -1106,9 +1106,6 @@ void DivPlatformAY8910::setFlags(const DivConfig& flags) {
|
|||
}
|
||||
CHECK_CUSTOM_CLOCK;
|
||||
}
|
||||
for (int i=0; i<3; i++) {
|
||||
oscBuf[i]->rate=rate;
|
||||
}
|
||||
|
||||
if (ay!=NULL) delete ay;
|
||||
switch (flags.getInt("chipType",0)) {
|
||||
|
@ -1156,6 +1153,10 @@ void DivPlatformAY8910::setFlags(const DivConfig& flags) {
|
|||
dacRate=rate;
|
||||
}
|
||||
|
||||
for (int i=0; i<3; i++) {
|
||||
oscBuf[i]->rate=rate;
|
||||
}
|
||||
|
||||
stereo=flags.getBool("stereo",false);
|
||||
stereoSep=flags.getInt("stereoSep",0)&255;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue