Fixed typo in sdl/input.c (no whatsnew)

This commit is contained in:
Miodrag Milanovic 2011-04-28 11:51:06 +00:00
parent 05ecfb6e21
commit 96b402e8e1

View File

@ -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));