Apple II - hard code the sound to be much quieter

This commit is contained in:
adelikat 2015-04-04 01:10:34 +00:00
parent d4bf5c40a2
commit da7e887fc2
1 changed files with 1 additions and 0 deletions

View File

@ -14,6 +14,7 @@ namespace Jellyfish.Virtu.Services
public void Output(int data) // machine thread
{
data = (int)(data * 0.2);
if (pos < buff.Length - 2)
{
buff[pos++] = (short)data;