mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-29 21:45:32 +00:00
Fixed const error in slice_stream.h
This commit is contained in:
parent
4d16beef1a
commit
fb1eec974c
1 changed files with 1 additions and 1 deletions
|
@ -57,7 +57,7 @@ class SliceStream : public Stream
|
|||
const void *getPtr() { return getPtr(0, length); }
|
||||
const void *getPtr(size_t size)
|
||||
{
|
||||
void *ptr = getPtr(pos, size);
|
||||
const void *ptr = getPtr(pos, size);
|
||||
seek(pos+size);
|
||||
return ptr;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue