We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 91a73b1 commit eb83787Copy full SHA for eb83787
sound/sound.c
@@ -69,6 +69,7 @@ INT16 WINAPI OpenSound16(void)
69
event = CreateEventA(NULL, FALSE, FALSE, NULL);
70
71
if (waveOutOpen(&wohand, WAVE_MAPPER, &wfmt, event, 0, CALLBACK_EVENT) != MMSYSERR_NOERROR) return S_SERDVNA;
72
+ waveOutSetVolume(wohand, MAKELONG(0x1999, 0x1999)); /* 10% volume */
73
queue = (NOTE *)HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, 32 * sizeof(NOTE));
74
queuelen = 32 * sizeof(NOTE);
75
playing = 0;
0 commit comments