summaryrefslogtreecommitdiff
path: root/src/deh_misc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/deh_misc.c')
-rw-r--r--src/deh_misc.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/deh_misc.c b/src/deh_misc.c
index e488d545..2cbba2f9 100644
--- a/src/deh_misc.c
+++ b/src/deh_misc.c
@@ -1,7 +1,7 @@
// Emacs style mode select -*- C++ -*-
//-----------------------------------------------------------------------------
//
-// $Id: deh_misc.c 164 2005-10-04 22:10:32Z fraggle $
+// $Id: deh_misc.c 175 2005-10-08 20:54:16Z fraggle $
//
// Copyright(C) 2005 Simon Howard
//
@@ -21,6 +21,9 @@
// 02111-1307, USA.
//
// $Log$
+// Revision 1.2 2005/10/08 20:54:16 fraggle
+// Proper dehacked error/warning framework. Catch a load more errors.
+//
// Revision 1.1 2005/10/04 22:10:32 fraggle
// Dehacked "Misc" section parser (currently a dummy)
//
@@ -34,11 +37,11 @@
#include "doomdef.h"
#include "doomtype.h"
#include "deh_defs.h"
+#include "deh_io.h"
static void *DEH_MiscStart(deh_context_t *context, char *line)
{
- fprintf(stderr, "DEH_MiscStart: Warning: dehacked 'Misc' sections are "
- "not yet supported.\n");
+ DEH_Warning(context, "Dehacked 'Misc' sections are not supported yet.");
return NULL;
}