Rename some functions for consistency.

git-svn-id: svn+ssh://svn.code.sf.net/p/quakespasm/code/trunk@1064 af15c1b1-3010-417e-b628-4374ebc0bcbd
This commit is contained in:
svdijk 2014-09-23 02:19:57 +00:00
parent 1951afb09c
commit 225223ec06
3 changed files with 7 additions and 7 deletions

View file

@ -1053,7 +1053,7 @@ void Char_Event (int key)
Char_Message (key);
break;
case key_menu:
M_Textinput (key);
M_Charinput (key);
break;
case key_console:
Char_Console (key);

View file

@ -817,7 +817,7 @@ forward:
}
void M_Setup_Textinput (int k)
void M_Setup_Char (int k)
{
int l;
@ -1798,7 +1798,7 @@ void M_LanConfig_Key (int key)
}
void M_LanConfig_Textinput (int key)
void M_LanConfig_Char (int key)
{
int l;
@ -2632,15 +2632,15 @@ void M_Keydown (int key)
}
void M_Textinput (int key)
void M_Charinput (int key)
{
switch (m_state)
{
case m_setup:
M_Setup_Textinput (key);
M_Setup_Char (key);
return;
case m_lanconfig:
M_LanConfig_Textinput (key);
M_LanConfig_Char (key);
return;
default:
return;

View file

@ -54,7 +54,7 @@ extern qboolean m_keys_bind_grab;
//
void M_Init (void);
void M_Keydown (int key);
void M_Textinput (int key);
void M_Charinput (int key);
void M_ToggleMenu_f (void);
void M_Menu_Main_f (void);