mirror of
https://github.com/libretro/scummvm.git
synced 2025-03-06 02:10:28 +00:00
Reordered initialization order to kill a ton of warnings.
svn-id: r33452
This commit is contained in:
parent
81cb493158
commit
aa2ffe047b
@ -356,9 +356,9 @@ protected:
|
||||
public:
|
||||
SubReadStream(ReadStream *parentStream, uint32 end, bool disposeParentStream = false)
|
||||
: _parentStream(parentStream),
|
||||
_disposeParentStream(disposeParentStream),
|
||||
_pos(0),
|
||||
_end(end),
|
||||
_disposeParentStream(disposeParentStream) {
|
||||
_end(end) {
|
||||
assert(parentStream);
|
||||
}
|
||||
~SubReadStream() {
|
||||
|
Loading…
x
Reference in New Issue
Block a user