Skip to content

Commit 4d95d74

Browse files
committed
aesnd: correct default voice volume
1 parent ad8a16f commit 4d95d74

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

libaesnd/aesndlib.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -544,8 +544,8 @@ AESNDPB* AESND_AllocateVoice(AESNDVoiceCallback cb)
544544
pb->buf_curr = 0;
545545
pb->buf_end = 0;
546546
pb->counter = 0;
547-
pb->volume_l = 255;
548-
pb->volume_r = 255;
547+
pb->volume_l = 0x100;
548+
pb->volume_r = 0x100;
549549
pb->freq_h = 0x0001;
550550
pb->freq_l = 0x0000;
551551
pb->cb = cb;

0 commit comments

Comments
 (0)