summaryrefslogtreecommitdiff
path: root/apps/plugins/doom/g_game.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/doom/g_game.c')
-rw-r--r--apps/plugins/doom/g_game.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/doom/g_game.c b/apps/plugins/doom/g_game.c
index cd6ab45ade..8b5e222082 100644
--- a/apps/plugins/doom/g_game.c
+++ b/apps/plugins/doom/g_game.c
@@ -2773,11 +2773,11 @@ boolean G_CheckDemoStatus (void)
2773 int fd=open(GAMEBASE "timedemo.txt",O_WRONLY | O_CREAT); 2773 int fd=open(GAMEBASE "timedemo.txt",O_WRONLY | O_CREAT);
2774 fdprintf (fd,"Timed %d gametics in %d realtics = %d frames per second", 2774 fdprintf (fd,"Timed %d gametics in %d realtics = %d frames per second",
2775 (unsigned) gametic, realtics, 2775 (unsigned) gametic, realtics,
2776 (unsigned) gametic * (double) TICRATE / realtics); 2776 (unsigned) gametic * TICRATE/ realtics);
2777 close(fd); 2777 close(fd);
2778 I_Error ("%d gametics in %d realtics", 2778 I_Error ("%d gametics in %d realtics",
2779 (unsigned) gametic,realtics, 2779 (unsigned) gametic,realtics,
2780 (unsigned) gametic * (double) TICRATE / realtics); 2780 (unsigned) gametic * TICRATE / realtics);
2781 return false; 2781 return false;
2782 } 2782 }
2783 2783