mirror of
https://github.com/Shpoike/Quakespasm.git
synced 2024-11-10 07:21:58 +00:00
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:
parent
1951afb09c
commit
225223ec06
3 changed files with 7 additions and 7 deletions
|
@ -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);
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue