Skip to content

Commit

Permalink
ZXHawk: Buzzer/Beeper implementation now use BlipBuffer - TASEmulator…
Browse files Browse the repository at this point in the history
  • Loading branch information
Asnivor committed May 8, 2018
1 parent a21a11b commit 9c800cf
Show file tree
Hide file tree
Showing 14 changed files with 1,087 additions and 58 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ private void IntvControllerSettings_Load(object sender, EventArgs e)
_settings = ((ZXSpectrum)Global.Emulator).GetSettings().Clone();

// AY panning config
var panTypes = Enum.GetNames(typeof(AYChip.AYPanConfig));
var panTypes = Enum.GetNames(typeof(AY38912.AYPanConfig));
foreach (var val in panTypes)
{
panTypecomboBox1.Items.Add(val);
Expand Down Expand Up @@ -51,7 +51,7 @@ private void OkBtn_Click(object sender, EventArgs e)

if (changed)
{
_settings.AYPanConfig = (AYChip.AYPanConfig)Enum.Parse(typeof(AYChip.AYPanConfig), panTypecomboBox1.SelectedItem.ToString());
_settings.AYPanConfig = (AY38912.AYPanConfig)Enum.Parse(typeof(AY38912.AYPanConfig), panTypecomboBox1.SelectedItem.ToString());

_settings.TapeVolume = tapeVolumetrackBar.Value;
_settings.EarVolume = earVolumetrackBar.Value;
Expand Down
2 changes: 2 additions & 0 deletions BizHawk.Emulation.Cores/BizHawk.Emulation.Cores.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -259,6 +259,8 @@
<Compile Include="Computers\Commodore64\SaveState.cs" />
<Compile Include="Computers\Commodore64\User\UserPortDevice.cs" />
<Compile Include="Computers\SinclairSpectrum\Hardware\Abstraction\IFDDHost.cs" />
<Compile Include="Computers\SinclairSpectrum\Hardware\SoundOuput\AY38912.cs" />
<Compile Include="Computers\SinclairSpectrum\Hardware\SoundOuput\Beeper.cs" />
<Compile Include="Computers\SinclairSpectrum\Media\Disk\FloppyDisk.cs" />
<Compile Include="Computers\SinclairSpectrum\Hardware\Abstraction\IJoystick.cs" />
<Compile Include="Computers\SinclairSpectrum\Hardware\Abstraction\IPortIODevice.cs" />
Expand Down
Loading

0 comments on commit 9c800cf

Please sign in to comment.