mirror of
https://github.com/holub/mame
synced 2025-04-23 08:49:55 +03:00
MESS-specific changes
This commit is contained in:
parent
5d52f08b7e
commit
81fcbd9a2c
10
src/emu/ui.c
10
src/emu/ui.c
@ -25,7 +25,7 @@
|
||||
#include "mess.h"
|
||||
#include "uimess.h"
|
||||
#include "inputx.h"
|
||||
#endif
|
||||
#endif /* MESS */
|
||||
|
||||
#include <ctype.h>
|
||||
|
||||
@ -446,8 +446,8 @@ void ui_update_and_render(running_machine *machine)
|
||||
|
||||
#ifdef MESS
|
||||
/* let MESS display its stuff */
|
||||
mess_ui_update();
|
||||
#endif
|
||||
mess_ui_update(machine);
|
||||
#endif /* MESS */
|
||||
}
|
||||
|
||||
|
||||
@ -1251,9 +1251,9 @@ static UINT32 handler_ingame(running_machine *machine, UINT32 state)
|
||||
}
|
||||
|
||||
#ifdef MESS
|
||||
if (mess_disable_builtin_ui())
|
||||
if (mess_disable_builtin_ui(machine))
|
||||
return 0;
|
||||
#endif
|
||||
#endif /* MESS */
|
||||
|
||||
/* if the user pressed ESC, stop the emulation */
|
||||
if (input_ui_pressed(IPT_UI_CANCEL))
|
||||
|
Loading…
Reference in New Issue
Block a user