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:
sezero 2010-05-31 10:12:00 +00:00
parent f325240397
commit 3c1ba05bc0
1 changed files with 2 additions and 2 deletions

View File

@ -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)