mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-31 07:53:36 +00:00
COMMON: Fix formatting in substream.h.
This commit is contained in:
parent
4f740bb224
commit
5f342562d1
@ -106,14 +106,14 @@ public:
|
|||||||
*/
|
*/
|
||||||
class SafeSubReadStream : public SeekableSubReadStream {
|
class SafeSubReadStream : public SeekableSubReadStream {
|
||||||
public:
|
public:
|
||||||
SafeSubReadStream(SeekableReadStream *parentStream, uint32 begin, uint32 end, DisposeAfterUse::Flag disposeParentStream = DisposeAfterUse::NO) :
|
SafeSubReadStream(SeekableReadStream *parentStream, uint32 begin, uint32 end, DisposeAfterUse::Flag disposeParentStream = DisposeAfterUse::NO)
|
||||||
SeekableSubReadStream(parentStream, begin, end, disposeParentStream) {
|
: SeekableSubReadStream(parentStream, begin, end, disposeParentStream) {
|
||||||
}
|
}
|
||||||
|
|
||||||
virtual uint32 read(void *dataPtr, uint32 dataSize);
|
virtual uint32 read(void *dataPtr, uint32 dataSize);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
} // End of namespace Common
|
} // End of namespace Common
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user