mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-13 21:31:53 +00:00
Made the offsets in the construct signed as well
svn-id: r28421
This commit is contained in:
parent
ff8fda1b80
commit
8b99a6508f
@ -137,7 +137,7 @@ public:
|
||||
virtual SaveType getSaveType(const char *fileName);
|
||||
|
||||
SaveLoad_v3(GobEngine *vm, const char *targetName, uint32 screenshotSize = 19968,
|
||||
uint32 indexOffset = 40, uint32 screenshotOffset = 80);
|
||||
int32 indexOffset = 40, int32 screenshotOffset = 80);
|
||||
virtual ~SaveLoad_v3() {}
|
||||
|
||||
protected:
|
||||
|
@ -35,7 +35,7 @@
|
||||
namespace Gob {
|
||||
|
||||
SaveLoad_v3::SaveLoad_v3(GobEngine *vm, const char *targetName,
|
||||
uint32 screenshotSize, uint32 indexOffset, uint32 screenshotOffset) :
|
||||
uint32 screenshotSize, int32 indexOffset, int32 screenshotOffset) :
|
||||
SaveLoad_v2(vm, targetName) {
|
||||
|
||||
_screenshotSize = screenshotSize;
|
||||
|
Loading…
Reference in New Issue
Block a user