summaryrefslogtreecommitdiff
path: root/saveload.h
diff options
context:
space:
mode:
authortruelight <truelight@openttd.org>2005-01-09 18:49:18 +0000
committertruelight <truelight@openttd.org>2005-01-09 18:49:18 +0000
commit97479f96134ec155375f97a8d12b0f8c4517a7a2 (patch)
tree0709c09c595cc9417b6bc92e6929b308efa10112 /saveload.h
parent55e6b4f928656c23b1f8bb5cbb3763152213a0b0 (diff)
downloadopenttd-97479f96134ec155375f97a8d12b0f8c4517a7a2.tar.xz
(svn r1448) -Fix: The current_order of a vehicle is now correctly saved (caused
massive desyncs) Warning: savegames which are made with the nightly of 08-01-2005 will NO LONGER work!!
Diffstat (limited to 'saveload.h')
-rw-r--r--saveload.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/saveload.h b/saveload.h
index ab5a15cf5..159252590 100644
--- a/saveload.h
+++ b/saveload.h
@@ -139,9 +139,6 @@ enum {
};
#define SLE_VAR(t,i,c) 0 | (offsetof(t,i) & 0xF), offsetof(t,i) >> 4, c
-#if _MSC_VER == 1200 /* XXX workaround for MSVC6 */
-#define SLE_VAR2(t0,i0, t1, i1, c) 0 | ((offsetof(t0, i0) + offsetof(t1, i1)) & 0xF), (offsetof(t0, i0) + offsetof(t1, i1)) >> 4, c
-#endif
#define SLE_REF(t,i,c) 0x10 | (offsetof(t,i) & 0xF), offsetof(t,i) >> 4, c
#define SLE_ARR(t,i,c,l) 0x20 | (offsetof(t,i) & 0xF), offsetof(t,i) >> 4, c, l
#define SLE_CONDVAR(t,i,c,from,to) 0x40 | (offsetof(t,i) & 0xF), offsetof(t,i) >> 4, c, from, to