(svn r959) -Fix: fix previous typo for workaround of braindead MSVC6 (Tron)
authordarkvater
Sun, 05 Dec 2004 20:02:49 +0000
changeset 557 8540788a827e
parent 556 d6b9bbfe0596
child 558 9b115b39c515
(svn r959) -Fix: fix previous typo for workaround of braindead MSVC6 (Tron)
-Fix: added debug code to autosave cause it is buggy in multiplayer (does not remember settings; takes them from _opt instead of _new_opt (or vice versa)).
saveload.h
ttd.c
--- a/saveload.h	Sun Dec 05 19:50:58 2004 +0000
+++ b/saveload.h	Sun Dec 05 20:02:49 2004 +0000
@@ -92,7 +92,7 @@
 };
 
 #define SLE_VAR(t,i,c) 0 | (offsetof(t,i) & 0xF), offsetof(t,i) >> 4, c
-#if MSC_VER == 1200 /* XXX workaround for MSVC6 */
+#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
--- a/ttd.c	Sun Dec 05 19:50:58 2004 +0000
+++ b/ttd.c	Sun Dec 05 20:02:49 2004 +0000
@@ -1015,6 +1015,7 @@
 		sprintf(buf, "%s%sautosave%d.sav", _path.autosave_dir, PATHSEP, n);
 	}
 
+	DEBUG(misc, 2) ("Autosaving to %s", buf);
 	if (SaveOrLoad(buf, SL_SAVE) != SL_OK)
 		ShowErrorMessage(INVALID_STRING_ID, STR_AUTOSAVE_FAILED, 0, 0);
 }