mirror of
https://github.com/holub/mame
synced 2025-07-03 17:08:39 +03:00
Passing running_machine* parameter
This commit is contained in:
parent
28855e088a
commit
d2123b2803
@ -1762,7 +1762,7 @@ static UINT32 menu_select_game(running_machine *machine, UINT32 state)
|
|||||||
#ifdef MESS
|
#ifdef MESS
|
||||||
static UINT32 menu_file_manager(running_machine *machine, UINT32 state)
|
static UINT32 menu_file_manager(running_machine *machine, UINT32 state)
|
||||||
{
|
{
|
||||||
int result = filemanager(state);
|
int result = filemanager(machine, state);
|
||||||
if (result == 0)
|
if (result == 0)
|
||||||
return ui_menu_stack_pop();
|
return ui_menu_stack_pop();
|
||||||
return result;
|
return result;
|
||||||
@ -1778,7 +1778,7 @@ static UINT32 menu_file_manager(running_machine *machine, UINT32 state)
|
|||||||
#if HAS_WAVE
|
#if HAS_WAVE
|
||||||
static UINT32 menu_tape_control(running_machine *machine, UINT32 state)
|
static UINT32 menu_tape_control(running_machine *machine, UINT32 state)
|
||||||
{
|
{
|
||||||
int result = tapecontrol(state);
|
int result = tapecontrol(machine, state);
|
||||||
if (result == 0)
|
if (result == 0)
|
||||||
return ui_menu_stack_pop();
|
return ui_menu_stack_pop();
|
||||||
return result;
|
return result;
|
||||||
|
Loading…
Reference in New Issue
Block a user