diff options
author | Simon Howard | 2005-07-23 19:42:56 +0000 |
---|---|---|
committer | Simon Howard | 2005-07-23 19:42:56 +0000 |
commit | 6af18ee0fbbde60e78d86baac9a3248b5bb17e6b (patch) | |
tree | 1319889b38cec8f90d68452f97b9baba0f71c194 /src/r_main.c | |
parent | 7e2991e5065363a59e45a8e6c16c927185e028bb (diff) | |
download | chocolate-doom-6af18ee0fbbde60e78d86baac9a3248b5bb17e6b.tar.gz chocolate-doom-6af18ee0fbbde60e78d86baac9a3248b5bb17e6b.tar.bz2 chocolate-doom-6af18ee0fbbde60e78d86baac9a3248b5bb17e6b.zip |
Startup messages as in the DOS exes
Subversion-branch: /trunk/chocolate-doom
Subversion-revision: 22
Diffstat (limited to 'src/r_main.c')
-rw-r--r-- | src/r_main.c | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/src/r_main.c b/src/r_main.c index 22691bb5..c89b5aff 100644 --- a/src/r_main.c +++ b/src/r_main.c @@ -1,7 +1,7 @@ // Emacs style mode select -*- C++ -*- //----------------------------------------------------------------------------- // -// $Id: r_main.c 19 2005-07-23 19:17:11Z fraggle $ +// $Id: r_main.c 22 2005-07-23 19:42:56Z fraggle $ // // Copyright(C) 1993-1996 Id Software, Inc. // Copyright(C) 2005 Simon Howard @@ -22,6 +22,9 @@ // 02111-1307, USA. // // $Log$ +// Revision 1.4 2005/07/23 19:42:56 fraggle +// Startup messages as in the DOS exes +// // Revision 1.3 2005/07/23 19:17:11 fraggle // Use ANSI-standard limit constants. Remove LINUX define. // @@ -40,7 +43,7 @@ //----------------------------------------------------------------------------- -static const char rcsid[] = "$Id: r_main.c 19 2005-07-23 19:17:11Z fraggle $"; +static const char rcsid[] = "$Id: r_main.c 22 2005-07-23 19:42:56Z fraggle $"; @@ -789,22 +792,15 @@ extern int screenblocks; void R_Init (void) { R_InitData (); - printf ("\nR_InitData"); R_InitPointToAngle (); - printf ("\nR_InitPointToAngle"); R_InitTables (); // viewwidth / viewheight / detailLevel are set by the defaults - printf ("\nR_InitTables"); R_SetViewSize (screenblocks, detailLevel); R_InitPlanes (); - printf ("\nR_InitPlanes"); R_InitLightTables (); - printf ("\nR_InitLightTables"); R_InitSkyMap (); - printf ("\nR_InitSkyMap"); R_InitTranslationTables (); - printf ("\nR_InitTranslationsTables"); framecount = 0; } |