- fixed a few 64-bit warnings.

This commit is contained in:
Christoph Oelckers 2016-02-13 13:37:28 +01:00
commit 340faef1ec
6 changed files with 9 additions and 9 deletions

View file

@ -126,7 +126,7 @@ TArray<char> SndFileDecoder::readAll()
output.Resize((unsigned)(SndInfo.frames * framesize));
size_t got = read(&output[0], output.Size());
output.Resize(got);
output.Resize((unsigned)got);
return output;
}