diff options
author | James Brown | 2003-05-22 05:21:48 +0000 |
---|---|---|
committer | James Brown | 2003-05-22 05:21:48 +0000 |
commit | 19bbee78433f41bf01db2e894d8a04b117ffb4c5 (patch) | |
tree | dd34c2faa23fd081d8d7c91acf17e35457071863 | |
parent | f43fb0dab8c9f91d9490ab742c1e65015d5bf00e (diff) | |
download | scummvm-rg350-19bbee78433f41bf01db2e894d8a04b117ffb4c5.tar.gz scummvm-rg350-19bbee78433f41bf01db2e894d8a04b117ffb4c5.tar.bz2 scummvm-rg350-19bbee78433f41bf01db2e894d8a04b117ffb4c5.zip |
Fix V2 userface stuff in savestate
svn-id: r7816
-rw-r--r-- | scumm/saveload.cpp | 1 | ||||
-rw-r--r-- | scumm/scummvm.cpp | 4 |
2 files changed, 5 insertions, 0 deletions
diff --git a/scumm/saveload.cpp b/scumm/saveload.cpp index 8cfc8da525..ddaf33b244 100644 --- a/scumm/saveload.cpp +++ b/scumm/saveload.cpp @@ -448,6 +448,7 @@ void Scumm::saveOrLoad(Serializer *s, uint32 savegameVersion) { MKLINE(Scumm, _numNestedScripts, sleByte, VER_V8), MKLINE(Scumm, _userPut, sleByte, VER_V8), + MKLINE(Scumm, _userState, sleUint16, VER_V17), MKLINE(Scumm, _cursor.state, sleByte, VER_V8), MKLINE(Scumm, gdi._cursorActive, sleByte, VER_V8), MKLINE(Scumm, _currentCursor, sleByte, VER_V8), diff --git a/scumm/scummvm.cpp b/scumm/scummvm.cpp index a01fab18e1..68fc040632 100644 --- a/scumm/scummvm.cpp +++ b/scumm/scummvm.cpp @@ -983,6 +983,10 @@ load_game: for (int i = 0; i < _maxVerbs; i++) drawVerb(i, 0); verbMouseOver(0); + + if (_features & GF_AFTER_V2) + redrawV2Inventory(); + _verbRedraw = false; _fullRedraw = true; } |