aboutsummaryrefslogtreecommitdiff
path: root/engines/cge2/fileio.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/cge2/fileio.cpp')
-rw-r--r--engines/cge2/fileio.cpp12
1 files changed, 0 insertions, 12 deletions
diff --git a/engines/cge2/fileio.cpp b/engines/cge2/fileio.cpp
index 11a01c67fb..41ea1c1105 100644
--- a/engines/cge2/fileio.cpp
+++ b/engines/cge2/fileio.cpp
@@ -222,22 +222,10 @@ uint32 EncryptedStream::read(byte *dataPtr, uint32 dataSize) {
return _readStream->read(dataPtr, dataSize);
}
-unsigned EncryptedStream::readUint16BE() {
- return _readStream->readUint16BE();
-}
-
-signed EncryptedStream::readSint16BE() {
- return _readStream->readSint16BE();
-}
-
signed EncryptedStream::readSint16LE() {
return _readStream->readSint16LE();
}
-signed EncryptedStream::readUint16LE() {
- return _readStream->readUint16LE();
-}
-
uint32 EncryptedStream::readUint32LE() {
return _readStream->readUint32LE();
}