[client]Fix the mouse sensitivity for when cl_mouseAccel is disabled.
diff --git a/src/engine/client/cl_input.cpp b/src/engine/client/cl_input.cpp
index aeb8632..6f382e6 100644
--- a/src/engine/client/cl_input.cpp
+++ b/src/engine/client/cl_input.cpp
@@ -997,6 +997,11 @@ void CL_MouseMove( usercmd_t* cmd )
Com_Printf( "ratex: %f, ratey: %f, powx: %f, powy: %f\n", rate[0], rate[1], power[0], power[1] );
}
}
+ else
+ {
+ mx *= cl_sensitivity->value;
+ my *= cl_sensitivity->value;
+ }
// Ridah, experimenting with a slow tracking gun
#if 0
GitHub
sha: ccb14126