aboutsummaryrefslogtreecommitdiff
path: root/common/substream.h
diff options
context:
space:
mode:
authorMax Horn2010-11-23 22:27:20 +0000
committerMax Horn2010-11-23 22:27:20 +0000
commit12d5151ff48adaf78bf75248155a1a78d8e3fbd2 (patch)
treed763bd5e4f3f28c9c53f90fc81a4201d80cb89f1 /common/substream.h
parent5d791cb090a6ead8594b956316f3735382703e8d (diff)
downloadscummvm-rg350-12d5151ff48adaf78bf75248155a1a78d8e3fbd2.tar.gz
scummvm-rg350-12d5151ff48adaf78bf75248155a1a78d8e3fbd2.tar.bz2
scummvm-rg350-12d5151ff48adaf78bf75248155a1a78d8e3fbd2.zip
COMMON: Remove default value for endianess in ReadStreamEndian subclasses
svn-id: r54441
Diffstat (limited to 'common/substream.h')
-rw-r--r--common/substream.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/substream.h b/common/substream.h
index 8c9c56165e..dc49ce9ecf 100644
--- a/common/substream.h
+++ b/common/substream.h
@@ -95,7 +95,7 @@ public:
*/
class SeekableSubReadStreamEndian : public SeekableSubReadStream, public ReadStreamEndian {
public:
- SeekableSubReadStreamEndian(SeekableReadStream *parentStream, uint32 begin, uint32 end, bool bigEndian = false, DisposeAfterUse::Flag disposeParentStream = DisposeAfterUse::NO)
+ SeekableSubReadStreamEndian(SeekableReadStream *parentStream, uint32 begin, uint32 end, bool bigEndian, DisposeAfterUse::Flag disposeParentStream = DisposeAfterUse::NO)
: SeekableSubReadStream(parentStream, begin, end, disposeParentStream),
ReadStreamEndian(bigEndian) {
}