fixed the 'too many verbs' bug: verbid is 16 bits but was stored in save games as a byte. This means that existing savegames are still affected by the bug

svn-id: r6376
This commit is contained in:
Max Horn 2003-01-09 22:53:21 +00:00
parent 86dea678e2
commit c3657ff637
3 changed files with 20 additions and 13 deletions

View file

@ -25,13 +25,14 @@
// Support for "old" savegames (made with 2501 CVS build)
// Can be useful for other ports too :)
#define VER_V12 12
#define VER_V11 11
#define VER_V10 10
#define VER_V9 9
#define VER_V8 8
#define VER_V7 7
#define CURRENT_VER VER_V11
#define CURRENT_VER VER_V12
// To work around a warning in GCC 3.2 (and 3.1 ?) regarding non-POD types,