mirror of
https://github.com/tildearrow/furnace.git
synced 2024-11-22 12:35:11 +00:00
AY: fix half clock divider
This commit is contained in:
parent
016b63493b
commit
504b77a5fd
1 changed files with 1 additions and 1 deletions
|
@ -879,10 +879,10 @@ void DivPlatformAY8910::setFlags(const DivConfig& flags) {
|
|||
if (ay!=NULL) delete ay;
|
||||
switch (flags.getInt("chipType",0)) {
|
||||
case 1:
|
||||
clockSel=flags.getBool("halfClock",false);
|
||||
ay=new ym2149_device(rate,clockSel);
|
||||
sunsoft=false;
|
||||
intellivision=false;
|
||||
clockSel=flags.getBool("halfClock",false);
|
||||
break;
|
||||
case 2:
|
||||
ay=new sunsoft_5b_sound_device(rate);
|
||||
|
|
Loading…
Reference in a new issue