mirror of
https://github.com/nzp-team/fteqw.git
synced 2024-11-22 12:01:25 +00:00
s/possabilities/possibilities, sv_displaypossabilities has changed name.
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@2727 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
parent
1120786c44
commit
0b046e2f5e
3 changed files with 7 additions and 7 deletions
|
@ -87,7 +87,7 @@ float con_cursorspeed = 4;
|
|||
cvar_t con_numnotifylines = SCVAR("con_notifylines","4"); //max lines to show
|
||||
cvar_t con_notifytime = SCVAR("con_notifytime","3"); //seconds
|
||||
cvar_t con_centernotify = SCVAR("con_centernotify", "0");
|
||||
cvar_t con_displaypossabilities = SCVAR("con_displaypossabilities", "1");
|
||||
cvar_t con_displaypossibilities = SCVAR("con_displaypossibilities", "1");
|
||||
cvar_t cl_chatmode = SCVAR("cl_chatmode", "2");
|
||||
|
||||
#define NUM_CON_TIMES 24
|
||||
|
@ -551,7 +551,7 @@ void Con_Init (void)
|
|||
Cvar_Register (&con_notifytime, "Console controls");
|
||||
Cvar_Register (&con_centernotify, "Console controls");
|
||||
Cvar_Register (&con_numnotifylines, "Console controls");
|
||||
Cvar_Register (&con_displaypossabilities, "Console controls");
|
||||
Cvar_Register (&con_displaypossibilities, "Console controls");
|
||||
Cvar_Register (&cl_chatmode, "Console controls");
|
||||
|
||||
Cmd_AddCommand ("toggleconsole", Con_ToggleConsole_f);
|
||||
|
|
|
@ -56,7 +56,7 @@ qboolean deltaused[K_MAX][KEY_MODIFIERSTATES];
|
|||
|
||||
void Con_Selectioncolour_Callback(struct cvar_s *var, char *oldvalue);
|
||||
|
||||
extern cvar_t con_displaypossabilities;
|
||||
extern cvar_t con_displaypossibilities;
|
||||
cvar_t con_selectioncolour = SCVARFC("con_selectioncolour", "0", CVAR_RENDERERCALLBACK, Con_Selectioncolour_Callback);
|
||||
extern cvar_t cl_chatmode;
|
||||
|
||||
|
@ -285,7 +285,7 @@ void CompleteCommand (qboolean force)
|
|||
if (*s == '\\' || *s == '/')
|
||||
s++;
|
||||
|
||||
if (!force && con_displaypossabilities.value)
|
||||
if (!force && con_displaypossibilities.value)
|
||||
{
|
||||
int x=0;
|
||||
for (i = 1; ; i++)
|
||||
|
@ -1025,7 +1025,7 @@ void Key_SetBinding (int keynum, int modifier, char *binding, int level)
|
|||
char *newc;
|
||||
int l;
|
||||
|
||||
if (modifier == ~0) //all of the possabilities.
|
||||
if (modifier == ~0) //all of the possibilities.
|
||||
{
|
||||
for (l = 0; l < KEY_MODIFIERSTATES; l++)
|
||||
Key_SetBinding(keynum, l, binding, level);
|
||||
|
@ -1206,7 +1206,7 @@ void Key_WriteBindings (vfsfile_t *f)
|
|||
char prefix[128];
|
||||
|
||||
for (i=0 ; i<K_MAX ; i++) //we rebind the key with all modifiers to get the standard bind, then change the specific ones.
|
||||
{ //this does two things, it normally allows us to skip 7 of the 8 possabilities
|
||||
{ //this does two things, it normally allows us to skip 7 of the 8 possibilities
|
||||
base = keybindings[i][0]; //plus we can use the config with other clients.
|
||||
if (!base)
|
||||
base = "";
|
||||
|
|
|
@ -193,7 +193,7 @@ void GL_CheckExtensions (void *(*getglfunction) (char *name))
|
|||
mtexid0 = 0;
|
||||
mtexid1 = 0;
|
||||
|
||||
//none of them bumpmapping possabilities.
|
||||
//none of them bumpmapping possibilities.
|
||||
gl_bumpmappingpossible = false;
|
||||
|
||||
//no GL_ATI_separate_stencil
|
||||
|
|
Loading…
Reference in a new issue