From 96b402e8e1de43a18e568b75999714d55c9c60ee Mon Sep 17 00:00:00 2001 From: Miodrag Milanovic Date: Thu, 28 Apr 2011 11:51:06 +0000 Subject: [PATCH] Fixed typo in sdl/input.c (no whatsnew) --- src/osd/sdl/input.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/osd/sdl/input.c b/src/osd/sdl/input.c index 1d1ab95455d..d3c6f112eeb 100644 --- a/src/osd/sdl/input.c +++ b/src/osd/sdl/input.c @@ -1105,7 +1105,7 @@ void sdlinput_init(running_machine &machine) app_has_mouse_focus = 1; // we need pause and exit callbacks - machine.add_notifier(MACHINE_NOTIFY_PAUSE, machine_notify_delegate(FUNC(sdlinput_pause), &machine); + machine.add_notifier(MACHINE_NOTIFY_PAUSE, machine_notify_delegate(FUNC(sdlinput_pause), &machine)); machine.add_notifier(MACHINE_NOTIFY_RESUME, machine_notify_delegate(FUNC(sdlinput_resume), &machine)); machine.add_notifier(MACHINE_NOTIFY_EXIT, machine_notify_delegate(FUNC(sdlinput_exit), &machine));