summaryrefslogtreecommitdiff
path: root/src/p_saveg.h
diff options
context:
space:
mode:
authorSimon Howard2006-02-15 12:57:58 +0000
committerSimon Howard2006-02-15 12:57:58 +0000
commitb693c7f12dbbf367ef41c8aba08774968bfe0604 (patch)
tree18b4a8b2f62c0f92bff2961ab437001767e9241b /src/p_saveg.h
parentd0d3b5a6945ece4bd6c8bb1102e8fe55f25852e8 (diff)
downloadchocolate-doom-b693c7f12dbbf367ef41c8aba08774968bfe0604.tar.gz
chocolate-doom-b693c7f12dbbf367ef41c8aba08774968bfe0604.tar.bz2
chocolate-doom-b693c7f12dbbf367ef41c8aba08774968bfe0604.zip
Remove the savegame buffer entirely. Keep the old savegame size limit
bug add a "vanilla_savegame_limit" config file option which allows the limit to be disabled if necessary. Subversion-branch: /trunk/chocolate-doom Subversion-revision: 367
Diffstat (limited to 'src/p_saveg.h')
-rw-r--r--src/p_saveg.h11
1 files changed, 9 insertions, 2 deletions
diff --git a/src/p_saveg.h b/src/p_saveg.h
index 3217e9d3..4176f20a 100644
--- a/src/p_saveg.h
+++ b/src/p_saveg.h
@@ -1,7 +1,7 @@
// Emacs style mode select -*- C++ -*-
//-----------------------------------------------------------------------------
//
-// $Id: p_saveg.h 300 2006-01-19 18:46:24Z fraggle $
+// $Id: p_saveg.h 367 2006-02-15 12:57:58Z fraggle $
//
// Copyright(C) 1993-1996 Id Software, Inc.
// Copyright(C) 2005 Simon Howard
@@ -30,6 +30,8 @@
#ifndef __P_SAVEG__
#define __P_SAVEG__
+#include <stdio.h>
+
// maximum size of a savegame description
#define SAVESTRINGSIZE 24
@@ -59,13 +61,18 @@ void P_UnArchiveThinkers (void);
void P_ArchiveSpecials (void);
void P_UnArchiveSpecials (void);
-extern byte* save_p;
+extern FILE *save_stream;
#endif
//-----------------------------------------------------------------------------
//
// $Log$
+// Revision 1.6 2006/02/15 12:57:58 fraggle
+// Remove the savegame buffer entirely. Keep the old savegame size limit
+// bug add a "vanilla_savegame_limit" config file option which allows
+// the limit to be disabled if necessary.
+//
// Revision 1.5 2006/01/19 18:46:24 fraggle
// Move savegame header read/write code into p_saveg.c
//