From 976a3e9f678e1d388070156299b2bdd2247647af Mon Sep 17 00:00:00 2001 From: Bryce Hutchings Date: Mon, 3 Jun 2002 00:44:51 +0000 Subject: [PATCH] matchTime fix --- reaction/game/g_matchmode.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reaction/game/g_matchmode.c b/reaction/game/g_matchmode.c index 6821956c..23ac6410 100644 --- a/reaction/game/g_matchmode.c +++ b/reaction/game/g_matchmode.c @@ -40,7 +40,7 @@ void MM_RunFrame (void) { //Each Type has different ways of dealing things.. case (GT_TEAMPLAY): if (level.team_game_going && level.inGame) - level.matchTime += 1/fps; + level.matchTime += 1.0f/(float)fps; break; } }