mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-16 22:58:09 +00:00
CGE2: Change return type of readSint16LE().
This commit is contained in:
parent
1224d79e53
commit
411e8ac5c8
@ -222,7 +222,7 @@ uint32 EncryptedStream::read(byte *dataPtr, uint32 dataSize) {
|
||||
return _readStream->read(dataPtr, dataSize);
|
||||
}
|
||||
|
||||
signed EncryptedStream::readSint16LE() {
|
||||
int16 EncryptedStream::readSint16LE() {
|
||||
return _readStream->readSint16LE();
|
||||
}
|
||||
|
||||
|
@ -120,7 +120,7 @@ public:
|
||||
int32 pos();
|
||||
int32 size();
|
||||
uint32 read(byte *dataPtr, uint32 dataSize);
|
||||
signed readSint16LE();
|
||||
int16 readSint16LE();
|
||||
uint32 readUint32LE();
|
||||
Common::String readLine();
|
||||
int getLineCount() { return _lineCount; }
|
||||
|
Loading…
Reference in New Issue
Block a user