summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Nathan Woods <npwoods@mess.org>2008-06-13 10:48:15 +0000
committer Nathan Woods <npwoods@mess.org>2008-06-13 10:48:15 +0000
commit01a8513bcc6cbab0806c24ffd071aa93cc1a1795 (patch)
tree273d18b348aefac2b3c5e4d1a7fba8606d1988f8
parent2e8eddb6488a6a823dec1ca20bbb349d9b49cb92 (diff)
Removed some MESS-y code
-rw-r--r--src/emu/uimenu.c38
1 files changed, 0 insertions, 38 deletions
diff --git a/src/emu/uimenu.c b/src/emu/uimenu.c
index 96477699ec3..d631f81d991 100644
--- a/src/emu/uimenu.c
+++ b/src/emu/uimenu.c
@@ -171,12 +171,6 @@ static UINT32 menu_memory_card(running_machine *machine, UINT32 state);
static UINT32 menu_video(running_machine *machine, UINT32 state);
static UINT32 menu_quit_game(running_machine *machine, UINT32 state);
static UINT32 menu_select_game(running_machine *machine, UINT32 state);
-#ifdef MESS
-static UINT32 menu_file_manager(running_machine *machine, UINT32 state);
-#if HAS_WAVE
-static UINT32 menu_tape_control(running_machine *machine, UINT32 state);
-#endif /* HAS_WAVE */
-#endif /* MESS */
/* menu helpers */
static void menu_render_triangle(bitmap_t *dest, const bitmap_t *source, const rectangle *sbounds, void *param);
@@ -1762,38 +1756,6 @@ static UINT32 menu_select_game(running_machine *machine, UINT32 state)
}
-/*-------------------------------------------------
- menu_file_manager - MESS-specific menu
--------------------------------------------------*/
-
-#ifdef MESS
-static UINT32 menu_file_manager(running_machine *machine, UINT32 state)
-{
- int result = filemanager(machine, state);
- if (result == 0)
- return ui_menu_stack_pop();
- return result;
-}
-#endif
-
-
-/*-------------------------------------------------
- menu_tape_control - MESS-specific menu
--------------------------------------------------*/
-
-#ifdef MESS
-#if HAS_WAVE
-static UINT32 menu_tape_control(running_machine *machine, UINT32 state)
-{
- int result = tapecontrol(machine, state);
- if (result == 0)
- return ui_menu_stack_pop();
- return result;
-}
-#endif /* HAS_WAVE */
-#endif /* MESS */
-
-
/***************************************************************************
MENU HELPERS