summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSimon Howard2005-08-03 22:20:09 +0000
committerSimon Howard2005-08-03 22:20:09 +0000
commit554bbec0671545b5df29bc6cb0db570586eea910 (patch)
tree5f636dc1f661ef91c9820e4ae717416cc10c00ba /src
parent5be0bc67a0ea139fa53993fc770941e5a2ab42bf (diff)
downloadchocolate-doom-554bbec0671545b5df29bc6cb0db570586eea910.tar.gz
chocolate-doom-554bbec0671545b5df29bc6cb0db570586eea910.tar.bz2
chocolate-doom-554bbec0671545b5df29bc6cb0db570586eea910.zip
Display FPS on quit
Subversion-branch: /trunk/chocolate-doom Subversion-revision: 32
Diffstat (limited to 'src')
-rw-r--r--src/g_game.c17
1 files changed, 13 insertions, 4 deletions
diff --git a/src/g_game.c b/src/g_game.c
index c12f4844..ce1af513 100644
--- a/src/g_game.c
+++ b/src/g_game.c
@@ -1,7 +1,7 @@
// Emacs style mode select -*- C++ -*-
//-----------------------------------------------------------------------------
//
-// $Id: g_game.c 8 2005-07-23 16:44:57Z fraggle $
+// $Id: g_game.c 32 2005-08-03 22:20:09Z fraggle $
//
// Copyright(C) 1993-1996 Id Software, Inc.
// Copyright(C) 2005 Simon Howard
@@ -22,6 +22,9 @@
// 02111-1307, USA.
//
// $Log$
+// Revision 1.3 2005/08/03 22:20:09 fraggle
+// Display FPS on quit
+//
// Revision 1.2 2005/07/23 16:44:55 fraggle
// Update copyright to GNU GPL
//
@@ -35,7 +38,7 @@
static const char
-rcsid[] = "$Id: g_game.c 8 2005-07-23 16:44:57Z fraggle $";
+rcsid[] = "$Id: g_game.c 32 2005-08-03 22:20:09Z fraggle $";
#include <string.h>
#include <stdlib.h>
@@ -1663,9 +1666,15 @@ boolean G_CheckDemoStatus (void)
if (timingdemo)
{
+ float fps;
+ int realtics;
+
endtime = I_GetTime ();
- I_Error ("timed %i gametics in %i realtics",gametic
- , endtime-starttime);
+ realtics = endtime - starttime;
+ fps = ((float) gametic * 35) / realtics;
+
+ I_Error ("timed %i gametics in %i realtics (%f fps)",
+ gametic, realtics, fps);
}
if (demoplayback)