]> de.git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - menu.c
remove some unfounded warnings of some gcc versions :P
[xonotic/darkplaces.git] / menu.c
diff --git a/menu.c b/menu.c
index 936e0d70a6a7eaf5a5ad72148c94e597b3d677c1..7417844b5d67a72792e3837e14c9fd45db3c7917 100644 (file)
--- a/menu.c
+++ b/menu.c
@@ -105,7 +105,7 @@ static void M_GameOptions_Key (int key, int ascii);
 static void M_ServerList_Key (int key, int ascii);
 static void M_ModList_Key (int key, int ascii);
 
-static qboolean        m_entersound;           // play after drawing a frame, so caching won't disrupt the sound
+static qboolean        m_entersound;           ///< play after drawing a frame, so caching won't disrupt the sound
 
 void M_Update_Return_Reason(char *s)
 {
@@ -810,7 +810,7 @@ static void M_SinglePlayer_Key (int key, int ascii)
 //=============================================================================
 /* LOAD/SAVE MENU */
 
-static int             load_cursor;            // 0 < load_cursor < MAX_SAVEGAMES
+static int             load_cursor;            ///< 0 < load_cursor < MAX_SAVEGAMES
 
 #define        MAX_SAVEGAMES           12
 static char    m_filenames[MAX_SAVEGAMES][SAVEGAME_COMMENT_LENGTH+1];