64 bit windows fixes

This commit is contained in:
Adam D. Ruppe 2018-06-27 18:54:45 -04:00
parent b351656398
commit 47e093c030
1 changed files with 1 additions and 1 deletions

View File

@ -640,7 +640,7 @@ struct AudioOutput {
// since this is wave out, it promises not to write...
auto buffer = buffers[i][];
header.lpData = cast(void*) buffer.ptr;
header.dwBufferLength = buffer.length * short.sizeof;
header.dwBufferLength = cast(int) buffer.length * cast(int) short.sizeof;
header.dwFlags = WHDR_BEGINLOOP | WHDR_ENDLOOP;
header.dwLoops = 1;