Merge pull request #402 from GrimMaple/master

Fix WAVERR_BADFORMAT in simpleaudio.d
This commit is contained in:
Adam D. Ruppe 2023-11-27 15:36:19 -05:00 committed by GitHub
commit daad84840f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -2375,7 +2375,7 @@ struct AudioOutput {
format.nChannels = cast(ushort) channels;
format.nSamplesPerSec = SampleRate;
format.nAvgBytesPerSec = SampleRate * channels * 2; // two channels, two bytes per sample
format.nBlockAlign = 4;
format.nBlockAlign = cast(short)(channels * 2);
format.wBitsPerSample = 16;
format.cbSize = 0;
if(auto err = waveOutOpen(&handle, WAVE_MAPPER, &format, cast(DWORD_PTR) &mmCallback, cast(DWORD_PTR) &this, CALLBACK_FUNCTION))