diff options
| author | Max Horn | 2002-12-04 22:31:36 +0000 |
|---|---|---|
| committer | Max Horn | 2002-12-04 22:31:36 +0000 |
| commit | df594d41fff6ae4edc7212a697556b82854d3aeb (patch) | |
| tree | 04350ece936fefa9956f26f0aac02a56372d52b8 /scumm/saveload.cpp | |
| parent | 45534e7698dac0d42ee95209902bec6ad2dc2c06 (diff) | |
| download | scummvm-rg350-df594d41fff6ae4edc7212a697556b82854d3aeb.tar.gz scummvm-rg350-df594d41fff6ae4edc7212a697556b82854d3aeb.tar.bz2 scummvm-rg350-df594d41fff6ae4edc7212a697556b82854d3aeb.zip | |
even more cleanup
svn-id: r5839
Diffstat (limited to 'scumm/saveload.cpp')
| -rw-r--r-- | scumm/saveload.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/scumm/saveload.cpp b/scumm/saveload.cpp index 8be9d988c1..5c227d8e33 100644 --- a/scumm/saveload.cpp +++ b/scumm/saveload.cpp @@ -396,7 +396,7 @@ void Scumm::saveOrLoad(Serializer *s) /* nest */ MKLINE(Scumm, _numNestedScripts, sleByte), MKLINE(Scumm, _userPut, sleByte), - MKLINE(Scumm, _cursorState, sleByte), + MKLINE(Scumm, _cursor.state, sleByte), MKLINE(Scumm, gdi._cursorActive, sleByte), MKLINE(Scumm, _currentCursor, sleByte), @@ -444,10 +444,10 @@ void Scumm::saveOrLoad(Serializer *s) MKLINE(Scumm, _screenB, sleUint16), MKLINE(Scumm, _screenH, sleUint16), - MKLINE(Scumm, _cd_track, sleInt16), - MKLINE(Scumm, _cd_loops, sleInt16), - MKLINE(Scumm, _cd_frame, sleInt16), - MKLINE(Scumm, _cd_end, sleInt16), + MKLINE(Scumm, _cd_track, sleInt16), // FIXME - remove next time save format changes + MKLINE(Scumm, _cd_loops, sleInt16), // FIXME - remove next time save format changes + MKLINE(Scumm, _cd_frame, sleInt16), // FIXME - remove next time save format changes + MKLINE(Scumm, _cd_end, sleInt16), // FIXME - remove next time save format changes MKEND() }; @@ -511,7 +511,7 @@ void Scumm::saveOrLoad(Serializer *s) /* nest */ MKLINE(Scumm, _numNestedScripts, sleByte), MKLINE(Scumm, _userPut, sleByte), - MKLINE(Scumm, _cursorState, sleByte), + MKLINE(Scumm, _cursor.state, sleByte), MKLINE(Scumm, gdi._cursorActive, sleByte), MKLINE(Scumm, _currentCursor, sleByte), |
