summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--src/emu/ui.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/emu/ui.c b/src/emu/ui.c
index 6d024a5d12f..42f9d4bbad9 100644
--- a/src/emu/ui.c
+++ b/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))