summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSimon Howard2005-10-08 18:34:12 +0000
committerSimon Howard2005-10-08 18:34:12 +0000
commit5dd09ed9c3406e3127b1bf04f07db5b5a9e3aeea (patch)
treef1a579cdc5073d7baa1b6c362d05d8f192aade5d /src
parent3519b53f176697dc8fdc6321e32b0eb598a2e9f4 (diff)
downloadchocolate-doom-5dd09ed9c3406e3127b1bf04f07db5b5a9e3aeea.tar.gz
chocolate-doom-5dd09ed9c3406e3127b1bf04f07db5b5a9e3aeea.tar.bz2
chocolate-doom-5dd09ed9c3406e3127b1bf04f07db5b5a9e3aeea.zip
Print startup message to stdout, not stderr
Subversion-branch: /trunk/chocolate-doom Subversion-revision: 169
Diffstat (limited to 'src')
-rw-r--r--src/s_sound.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/s_sound.c b/src/s_sound.c
index 30d7add2..9b806115 100644
--- a/src/s_sound.c
+++ b/src/s_sound.c
@@ -1,7 +1,7 @@
// Emacs style mode select -*- C++ -*-
//-----------------------------------------------------------------------------
//
-// $Id: s_sound.c 110 2005-09-17 20:25:56Z fraggle $
+// $Id: s_sound.c 169 2005-10-08 18:34:12Z fraggle $
//
// Copyright(C) 1993-1996 Id Software, Inc.
// Copyright(C) 2005 Simon Howard
@@ -22,6 +22,9 @@
// 02111-1307, USA.
//
// $Log$
+// Revision 1.8 2005/10/08 18:34:12 fraggle
+// Print startup message to stdout, not stderr
+//
// Revision 1.7 2005/09/17 20:25:56 fraggle
// Set the default values for variables in their initialisers. Remove the
// "defaultvalue" parameter and associated code from the configuration
@@ -55,7 +58,7 @@
static const char
-rcsid[] = "$Id: s_sound.c 110 2005-09-17 20:25:56Z fraggle $";
+rcsid[] = "$Id: s_sound.c 169 2005-10-08 18:34:12Z fraggle $";
@@ -198,7 +201,7 @@ void S_Init
{
int i;
- fprintf( stderr, "S_Init: default sfx volume %d\n", sfxVolume);
+ printf("S_Init: default sfx volume %d\n", sfxVolume);
// Whatever these did with DMX, these are rather dummies now.
I_SetChannels();