| 15 | } |
| 16 | |
| 17 | FileBufferSub::FileBufferSub(IFileBuffer* buf, int start, int size) : _whole(buf) |
| 18 | { |
| 19 | int bufSize = buf->GetSize(); |
| 20 | saturate(start, 0, bufSize); |
| 21 | saturate(size, 0, bufSize - start); |
| 22 | _start = start; |
| 23 | _size = size; |
| 24 | } |
| 25 | |
| 26 | } // namespace Poseidon |