diff options
author | 2016-11-06 14:11:55 +0100 | |
---|---|---|
committer | 2016-11-06 14:11:55 +0100 | |
commit | 2027d59e7f36129e86b4e4cf2c32b18268c337b8 (patch) | |
tree | 97a01f3b9ff70dbfd860c57885880f8021600f6b /src/frontend/mame/ui/viewgfx.cpp | |
parent | e311c17406f0b6a304e0df44d0f5ae2c317dcfd7 (diff) |
Do not use FUNC in delegate where applicable (nw)
Diffstat (limited to 'src/frontend/mame/ui/viewgfx.cpp')
-rw-r--r-- | src/frontend/mame/ui/viewgfx.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/frontend/mame/ui/viewgfx.cpp b/src/frontend/mame/ui/viewgfx.cpp index aae31d2fc61..f87afd67d20 100644 --- a/src/frontend/mame/ui/viewgfx.cpp +++ b/src/frontend/mame/ui/viewgfx.cpp @@ -140,7 +140,7 @@ void ui_gfx_init(running_machine &machine) uint8_t rotate = machine.system().flags & ORIENTATION_MASK; // make sure we clean up after ourselves - machine.add_notifier(MACHINE_NOTIFY_EXIT, machine_notify_delegate(FUNC(ui_gfx_exit), &machine)); + machine.add_notifier(MACHINE_NOTIFY_EXIT, machine_notify_delegate(&ui_gfx_exit, &machine)); // initialize our global state memset(state, 0, sizeof(*state)); |