Removed some MESS-y code

This commit is contained in:
Nathan Woods 2008-06-13 10:48:15 +00:00
parent 2e8eddb648
commit 01a8513bcc

View File

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