(svn r19603) [1.0] -Backport from trunk:

- Fix: Desync debugging; false positives in the cache validity checks and saving/loading the command stream (r19601, r19600, r19596, r19593, r19592, r19589, r19587, r19586)
This commit is contained in:
rubidium
2010-04-11 10:57:21 +00:00
parent d197bcae1c
commit 83cca3a75a
12 changed files with 225 additions and 143 deletions
+1 -1
View File
@@ -93,7 +93,7 @@ static void debug_print(const char *dbg, const char *buf)
static FILE *f = FioFOpenFile("commands-out.log", "wb", AUTOSAVE_DIR);
if (f == NULL) return;
fprintf(f, "%s%s", GetLogPrefix(), buf);
fprintf(f, "%s%s\n", GetLogPrefix(), buf);
fflush(f);
}
}