1
0
mirror of https://github.com/rwengine/openrw.git synced 2024-09-18 16:32:32 +02:00

Change type of _currChunkSz

This commit is contained in:
Filip Gawin 2018-01-06 22:17:32 +01:00 committed by Daniel Evans
parent 3db102a13e
commit 70d72fed38

View File

@ -20,7 +20,7 @@ class RWBStream {
char* _dataCur;
char* _nextChunk;
std::uint32_t _chunkVersion;
std::ptrdiff_t _currChunkSz;
size_t _currChunkSz;
public:
typedef std::uint32_t ChunkID;