fix weird dac buzzing in Armed-Formation boot & title

This commit is contained in:
dinkc64 2014-10-30 05:43:27 +00:00
parent 8b9b36694a
commit 82305c242d
1 changed files with 2 additions and 2 deletions

View File

@ -559,11 +559,11 @@ void __fastcall armedf_write_port(UINT16 port, UINT8 data)
return;
case 0x02:
DACSignedWrite(0, data);
if (data!=0x7f && data!=0x77) DACSignedWrite(0, data);
return;
case 0x03:
DACSignedWrite(1, data);
if (data!=0x7f && data!=0x77) DACSignedWrite(1, data);
return;
}
}