[chocolate-doom] 19/83: Add back previously removed printfs as '.'s for startup progress bar
Jonathan Dowland
jmtd at moszumanska.debian.org
Mon Jan 30 15:06:22 UTC 2017
This is an automated email from the git hooks/post-receive script.
jmtd pushed a commit to annotated tag chocolate-doom-0.0.1
in repository chocolate-doom.
commit 7de2353daa2bd43fa0dc487472a42006e449a1c4
Author: Simon Howard <fraggle at gmail.com>
Date: Sat Jul 23 23:07:04 2005 +0000
Add back previously removed printfs as '.'s for startup progress bar
Subversion-branch: /trunk/chocolate-doom
Subversion-revision: 25
---
src/r_data.c | 10 ++++++++--
src/r_main.c | 13 +++++++++++--
2 files changed, 19 insertions(+), 4 deletions(-)
diff --git a/src/r_data.c b/src/r_data.c
index a149490..d85d7b5 100644
--- a/src/r_data.c
+++ b/src/r_data.c
@@ -1,7 +1,7 @@
// Emacs style mode select -*- C++ -*-
//-----------------------------------------------------------------------------
//
-// $Id: r_data.c 22 2005-07-23 19:42:56Z fraggle $
+// $Id: r_data.c 25 2005-07-23 23:07:04Z fraggle $
//
// Copyright(C) 1993-1996 Id Software, Inc.
// Copyright(C) 2005 Simon Howard
@@ -22,6 +22,9 @@
// 02111-1307, USA.
//
// $Log$
+// Revision 1.5 2005/07/23 23:07:04 fraggle
+// Add back previously removed printfs as '.'s for startup progress bar
+//
// Revision 1.4 2005/07/23 19:42:56 fraggle
// Startup messages as in the DOS exes
//
@@ -44,7 +47,7 @@
static const char
-rcsid[] = "$Id: r_data.c 22 2005-07-23 19:42:56Z fraggle $";
+rcsid[] = "$Id: r_data.c 25 2005-07-23 23:07:04Z fraggle $";
#include "i_system.h"
#include "z_zone.h"
@@ -671,8 +674,11 @@ void R_InitColormaps (void)
void R_InitData (void)
{
R_InitTextures ();
+ printf (".");
R_InitFlats ();
+ printf (".");
R_InitSpriteLumps ();
+ printf (".");
R_InitColormaps ();
}
diff --git a/src/r_main.c b/src/r_main.c
index c89b5af..d2d8bbb 100644
--- a/src/r_main.c
+++ b/src/r_main.c
@@ -1,7 +1,7 @@
// Emacs style mode select -*- C++ -*-
//-----------------------------------------------------------------------------
//
-// $Id: r_main.c 22 2005-07-23 19:42:56Z fraggle $
+// $Id: r_main.c 25 2005-07-23 23:07:04Z fraggle $
//
// Copyright(C) 1993-1996 Id Software, Inc.
// Copyright(C) 2005 Simon Howard
@@ -22,6 +22,9 @@
// 02111-1307, USA.
//
// $Log$
+// Revision 1.5 2005/07/23 23:07:04 fraggle
+// Add back previously removed printfs as '.'s for startup progress bar
+//
// Revision 1.4 2005/07/23 19:42:56 fraggle
// Startup messages as in the DOS exes
//
@@ -43,7 +46,7 @@
//-----------------------------------------------------------------------------
-static const char rcsid[] = "$Id: r_main.c 22 2005-07-23 19:42:56Z fraggle $";
+static const char rcsid[] = "$Id: r_main.c 25 2005-07-23 23:07:04Z fraggle $";
@@ -792,15 +795,21 @@ extern int screenblocks;
void R_Init (void)
{
R_InitData ();
+ printf (".");
R_InitPointToAngle ();
+ printf (".");
R_InitTables ();
// viewwidth / viewheight / detailLevel are set by the defaults
+ printf (".");
R_SetViewSize (screenblocks, detailLevel);
R_InitPlanes ();
+ printf (".");
R_InitLightTables ();
+ printf (".");
R_InitSkyMap ();
R_InitTranslationTables ();
+ printf (".");
framecount = 0;
}
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-games/chocolate-doom.git
More information about the Pkg-games-commits
mailing list