summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/mame.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/mame.c')
-rw-r--r--src/emu/mame.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/emu/mame.c b/src/emu/mame.c
index bc50082303a..2d23eaad4e5 100644
--- a/src/emu/mame.c
+++ b/src/emu/mame.c
@@ -378,7 +378,7 @@ int mame_execute(core_options *options)
begin_resource_tracking();
/* perform a soft reset -- this takes us to the running phase */
- soft_reset(machine, 0);
+ soft_reset(machine, NULL, 0);
/* run the CPUs until a reset or exit */
mame->hard_reset_pending = FALSE;
@@ -392,7 +392,7 @@ int mame_execute(core_options *options)
/* otherwise, just pump video updates through */
else
- video_frame_update();
+ video_frame_update(FALSE);
/* handle save/load */
if (mame->saveload_schedule_callback)
@@ -1508,7 +1508,7 @@ static void init_machine(running_machine *machine)
/* initialize the timers and allocate a soft_reset timer */
/* this must be done before cpu_init so that CPU's can allocate timers */
timer_init(machine);
- mame->soft_reset_timer = timer_alloc(soft_reset);
+ mame->soft_reset_timer = timer_alloc(soft_reset, NULL);
/* init the osd layer */
osd_init(machine);