mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-31 07:53:36 +00:00
GRIM: Save Iris::_x2 and _y2.
This commit is contained in:
parent
a288749240
commit
9fc70eeb4c
@ -85,8 +85,8 @@ void Iris::saveState(SaveGame *state) const {
|
||||
state->writeLEUint32((uint32)_direction);
|
||||
state->writeLEUint32(_x1);
|
||||
state->writeLEUint32(_y1);
|
||||
// state->writeLEUint32(_x2);
|
||||
// state->writeLEUint32(_y2);
|
||||
state->writeLEUint32(_x2);
|
||||
state->writeLEUint32(_y2);
|
||||
state->writeLEUint32(_lenght);
|
||||
state->writeLEUint32(_currTime);
|
||||
|
||||
@ -100,8 +100,8 @@ void Iris::restoreState(SaveGame *state) {
|
||||
_direction = (Direction)state->readLEUint32();
|
||||
_x1 = state->readLEUint32();
|
||||
_y1 = state->readLEUint32();
|
||||
// _x2 = state->readLEUint32();
|
||||
// _y2 = state->readLEUint32();
|
||||
_x2 = state->readLEUint32();
|
||||
_y2 = state->readLEUint32();
|
||||
_lenght = state->readLEUint32();
|
||||
_currTime = state->readLEUint32();
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user