Apple II - hard code the sound to be much quieter
This commit is contained in:
parent
d4bf5c40a2
commit
da7e887fc2
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue