From f4f8fc8c9b030669880e4b7c01eaa111bf433045 Mon Sep 17 00:00:00 2001 From: divverent Date: Sun, 23 Dec 2007 17:57:02 +0000 Subject: [PATCH] fix wrong conversion factor of knots (Wikipedia has another opinion than feh on this) git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@7848 d7cf8633-e32d-0410-b094-e92efae38249 --- sbar.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sbar.c b/sbar.c index 306b8167..da545f49 100644 --- a/sbar.c +++ b/sbar.c @@ -1108,7 +1108,7 @@ void Sbar_ShowFPS(void) break; case 5: unit = "knots"; - f = 0.0254 * 1.943844492; + f = 0.0254 * 1.852; if(gamemode != GAME_NEXUIZ) f *= 1.5; break; } -- 2.39.2