foxygit / doom Log in
commit 85546c0353ca98fd3426f0fadb55ea3de6c16157
Author:     Turo Lamminen <turotl@gmail.com>
AuthorDate: Tue Apr 24 19:22:28 2018 +0300
Commit:     Turo Lamminen <turotl@gmail.com>
CommitDate: Tue Apr 24 19:22:28 2018 +0300

    doom: Remove unused function M_DrawSelCell
---
 src/doom/m_menu.c | 11 -----------
 1 file changed, 11 deletions(-)

diff --git a/src/doom/m_menu.c b/src/doom/m_menu.c
index 85152e90..64ba0eac 100644
--- a/src/doom/m_menu.c
+++ b/src/doom/m_menu.c
@@ -214,7 +214,6 @@ void M_DrawSave(void);
 void M_DrawSaveLoadBorder(int x,int y);
 void M_SetupNextMenu(menu_t *menudef);
 void M_DrawThermo(int x,int y,int thermWidth,int thermDot);
-void M_DrawSelCell(menu_t *menu,int item);
 void M_WriteText(int x, int y, char *string);
 int  M_StringWidth(char *string);
 int  M_StringHeight(const char *string);
@@ -1211,16 +1210,6 @@ M_DrawThermo
 }


-void
-M_DrawSelCell
-( menu_t*	menu,
-  int		item )
-{
-    V_DrawPatchDirect(menu->x - 10, menu->y + item * LINEHEIGHT - 1,
-                      W_CacheLumpName(DEH_String("M_CELL2"), PU_CACHE));
-}
-
-
 void
 M_StartMessage
 ( const char	*string,