summaryrefslogtreecommitdiff
path: root/apps/plugins/doom/i_system.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/doom/i_system.c')
-rw-r--r--apps/plugins/doom/i_system.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/apps/plugins/doom/i_system.c b/apps/plugins/doom/i_system.c
index 1e564054f8..ad1001cf8b 100644
--- a/apps/plugins/doom/i_system.c
+++ b/apps/plugins/doom/i_system.c
@@ -16,7 +16,10 @@
16// GNU General Public License for more details. 16// GNU General Public License for more details.
17// 17//
18// $Log$ 18// $Log$
19// Revision 1.1 2006/03/28 15:44:01 dave 19// Revision 1.2 2006/04/02 01:52:44 kkurbjun
20// Update adds prboom's high resolution support, also makes the scaling for platforms w/ resolution less then 320x200 much nicer. IDoom's lookup table code has been removed. Also fixed a pallete bug. Some graphic errors are present in menu and status bar. Also updates some headers and output formatting.
21//
22// Revision 1.1 2006-03-28 15:44:01 dave
20// Patch #2969 - Doom! Currently only working on the H300. 23// Patch #2969 - Doom! Currently only working on the H300.
21// 24//
22// 25//
@@ -120,7 +123,7 @@ void I_Error (char *error, ...)
120 vsnprintf(p_buf,sizeof(p_buf), error, ap); 123 vsnprintf(p_buf,sizeof(p_buf), error, ap);
121 va_end(ap); 124 va_end(ap);
122 125
123 printf("%s",p_buf); 126 printf("%s\n",p_buf);
124 127
125 // Shutdown. Here might be other errors. 128 // Shutdown. Here might be other errors.
126 if (demorecording) 129 if (demorecording)