mirror of
https://github.com/Shpoike/Quakespasm.git
synced 2025-02-11 10:11:47 +00:00
menu.c (m_return_state, m_quit_prevstate): fixed typo.
git-svn-id: svn+ssh://svn.code.sf.net/p/quakespasm/code/trunk@173 af15c1b1-3010-417e-b628-4374ebc0bcbd
This commit is contained in:
parent
faef222404
commit
fbffcfa3b9
1 changed files with 2 additions and 2 deletions
|
@ -87,7 +87,7 @@ qboolean m_entersound; // play after drawing a frame, so caching
|
||||||
// won't disrupt the sound
|
// won't disrupt the sound
|
||||||
qboolean m_recursiveDraw;
|
qboolean m_recursiveDraw;
|
||||||
|
|
||||||
m_state_e m_return_state;
|
enum m_state_e m_return_state;
|
||||||
qboolean m_return_onerror;
|
qboolean m_return_onerror;
|
||||||
char m_return_reason [32];
|
char m_return_reason [32];
|
||||||
|
|
||||||
|
@ -1536,7 +1536,7 @@ void M_Help_Key (int key)
|
||||||
/* QUIT MENU */
|
/* QUIT MENU */
|
||||||
|
|
||||||
int msgNumber;
|
int msgNumber;
|
||||||
m_state_e m_quit_prevstate;
|
enum m_state_e m_quit_prevstate;
|
||||||
qboolean wasInMenus;
|
qboolean wasInMenus;
|
||||||
|
|
||||||
void M_Menu_Quit_f (void)
|
void M_Menu_Quit_f (void)
|
||||||
|
|
Loading…
Reference in a new issue