From: divverent Date: Sun, 23 Dec 2007 17:57:02 +0000 (+0000) Subject: fix wrong conversion factor of knots (Wikipedia has another opinion than feh on this) X-Git-Tag: xonotic-v0.1.0preview~2643 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=f4f8fc8c9b030669880e4b7c01eaa111bf433045;p=xonotic%2Fdarkplaces.git 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 --- 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; }