diff options
Diffstat (limited to 'engines/bladerunner/savefile.h')
-rw-r--r-- | engines/bladerunner/savefile.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/bladerunner/savefile.h b/engines/bladerunner/savefile.h index de5ca4bf52..2948ce64e0 100644 --- a/engines/bladerunner/savefile.h +++ b/engines/bladerunner/savefile.h @@ -94,7 +94,7 @@ public: void padBytes(int count); - void writeInt(int v); // this writes a 4 byte int (uses writeUint32LE) + void writeInt(int32 v); // this writes a 4 byte int (uses writeUint32LE) void writeFloat(float v); void writeBool(bool v); void writeStringSz(const Common::String &s, uint sz); @@ -117,7 +117,7 @@ public: int32 size() const override { return _s.size(); } bool seek(int32 offset, int whence = SEEK_SET) override { return _s.seek(offset, whence); } - int readInt(); + int32 readInt(); float readFloat(); bool readBool(); Common::String readStringSz(uint sz); |