mirror of
https://github.com/Shpoike/Quakespasm.git
synced 2024-11-10 15:31:39 +00:00
menu.c (m_return_state, m_quit_prevstate): fixed typo.
git-svn-id: http://svn.code.sf.net/p/quakespasm/code/trunk/quakespasm@173 af15c1b1-3010-417e-b628-4374ebc0bcbd
This commit is contained in:
parent
f325240397
commit
3c1ba05bc0
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
|
||||
qboolean m_recursiveDraw;
|
||||
|
||||
m_state_e m_return_state;
|
||||
enum m_state_e m_return_state;
|
||||
qboolean m_return_onerror;
|
||||
char m_return_reason [32];
|
||||
|
||||
|
@ -1536,7 +1536,7 @@ void M_Help_Key (int key)
|
|||
/* QUIT MENU */
|
||||
|
||||
int msgNumber;
|
||||
m_state_e m_quit_prevstate;
|
||||
enum m_state_e m_quit_prevstate;
|
||||
qboolean wasInMenus;
|
||||
|
||||
void M_Menu_Quit_f (void)
|
||||
|
|
Loading…
Reference in a new issue