From 6fb16e778bdbad91e1ee3e1aa10f739be19e5eaf Mon Sep 17 00:00:00 2001 From: skyjake Date: Tue, 10 Jun 2003 09:31:30 +0000 Subject: [PATCH] Added printing of info-lums --- doomsday/Src/r_main.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/doomsday/Src/r_main.c b/doomsday/Src/r_main.c index 5a39bb00fc..06fd08dba0 100644 --- a/doomsday/Src/r_main.c +++ b/doomsday/Src/r_main.c @@ -148,14 +148,12 @@ void R_Update(void) // Go back to startup-screen mode. Con_StartupInit(); - //GL_ShutdownTextureManager(); GL_TotalReset(true); GL_TotalReset(false); R_UpdateData(); R_InitSprites(); // Fully reinitialize sprites. R_InitSkyMap(); R_UpdateTranslationTables(); - //GL_InitRefresh(); // Re-read definitions. Def_Read(); Def_PostInit(); @@ -461,6 +459,10 @@ void R_RenderPlayerView(ddplayer_t *player) Con_Printf("Tris: %-4i (Mdl=%-4i)\n", i, model_tri_count); model_tri_count = 0; } + if(rend_info_lums) + { + Con_Printf("LumObjs: %-4i\n", numLuminous); + } }