fix soundbank conversion warning

This commit is contained in:
Jan 2021-04-14 18:40:34 +02:00
parent 6b72ac080f
commit 15c896862c

View File

@ -51,7 +51,7 @@ protected:
m_stream.read(ptr, count);
const auto readSize = m_stream.gcount();
m_offset += readSize;
m_offset += static_cast<size_t>(readSize);
return readSize;
}