game(client): fix touch drawing

This commit is contained in:
nillerusr
2022-09-17 15:57:17 +03:00
parent b1a3eafbe6
commit 5a28ccec8c
4 changed files with 11 additions and 13 deletions
+1 -1
View File
@@ -87,7 +87,7 @@ extern ConVar sensitivity;
static C_BasePlayer *s_pLocalPlayer = NULL;
static ConVar cl_customsounds ( "cl_customsounds", "0", 0, "Enable customized player sound playback" );
static ConVar cl_customsounds ( "cl_customsounds", "1", 0, "Enable customized player sound playback" );
static ConVar spec_track ( "spec_track", "0", 0, "Tracks an entity in spec mode" );
static ConVar cl_smooth ( "cl_smooth", "1", 0, "Smooth view/eye origin after prediction errors" );
static ConVar cl_smoothtime (
-3
View File
@@ -37,9 +37,6 @@ ConVar cl_showtextmsg( "cl_showtextmsg", "1", 0, "Enable/disable text messages p
ConVar cl_chatfilters( "cl_chatfilters", "63", FCVAR_CLIENTDLL | FCVAR_ARCHIVE, "Stores the chat filter settings " );
ConVar cl_chatfilter_version( "cl_chatfilter_version", "0", FCVAR_CLIENTDLL | FCVAR_ARCHIVE | FCVAR_HIDDEN, "Stores the chat filter version" );
#undef IsAndroid
#define IsAndroid() 1
const int kChatFilterVersion = 1;
Color g_ColorBlue( 153, 204, 255, 255 );