diff --git a/Quake/gl_screen.c b/Quake/gl_screen.c index 75334872..11748a1f 100644 --- a/Quake/gl_screen.c +++ b/Quake/gl_screen.c @@ -752,6 +752,9 @@ SCR_DrawSpeed */ void SCR_DrawSpeed (void) { + if (cl.intermission || CL_InCutscene () || scr_viewsize.value >= 130) + return; + const float show_speed_interval_value = 0.05f; static float maxspeed = 0, display_speed = -1; static double lastrealtime = 0;