mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-11 07:11:39 +00:00
macOS build fix
git-svn-id: https://svn.eduke32.com/eduke32@7081 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
75e141ec81
commit
688fadd729
1 changed files with 1 additions and 1 deletions
|
@ -295,7 +295,7 @@ end_of_data:
|
|||
blocklength /= 2;
|
||||
|
||||
voice->position = 0;
|
||||
voice->length = min(blocklength, 0x8000ull);
|
||||
voice->length = min<uint32_t>(blocklength, 0x8000u);
|
||||
voice->BlockLength = blocklength - voice->length;
|
||||
voice->length <<= 16;
|
||||
|
||||
|
|
Loading…
Reference in a new issue