- fixed a few 64-bit warnings.
This commit is contained in:
parent
f7e27032dc
commit
340faef1ec
6 changed files with 9 additions and 9 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue