aboutsummaryrefslogtreecommitdiff
path: root/engines/cge2/fileio.cpp
diff options
context:
space:
mode:
authoruruk2014-07-29 13:40:53 +0200
committeruruk2014-07-29 13:40:53 +0200
commit2c5af2ae54c475167f6fae1b9792ef48dd01d86e (patch)
tree553a63a8a48a316d8c3bdfb73e35279fa4715936 /engines/cge2/fileio.cpp
parent02c0b419d6b28350c654eadccdb8fe7f1b1f1b7d (diff)
downloadscummvm-rg350-2c5af2ae54c475167f6fae1b9792ef48dd01d86e.tar.gz
scummvm-rg350-2c5af2ae54c475167f6fae1b9792ef48dd01d86e.tar.bz2
scummvm-rg350-2c5af2ae54c475167f6fae1b9792ef48dd01d86e.zip
CGE2: Remove unused functions from EncryptedStream.
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();
}