Basic Infos
The pos parameter in File::seek() should be a signed value so that relative seeking is possible.
Currently it's an uint32_t, which means that it's impossible to seek backwards from the current position (using SeekCur) or the end (using SeekEnd).
Basic Infos
The
posparameter inFile::seek()should be a signed value so that relative seeking is possible.Currently it's an
uint32_t, which means that it's impossible to seek backwards from the current position (usingSeekCur) or the end (usingSeekEnd).