From 23ad94073f4c2f7131fa0c95b6202f2f9027db41 Mon Sep 17 00:00:00 2001 From: Miodrag Milanovic Date: Sat, 22 Oct 2016 11:31:49 +0200 Subject: use standard types uintptr_t, char16_t and char32_t instead of FPTR, utf16_char, unicode_char (nw) --- src/mame/drivers/wolfpack.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/mame/drivers/wolfpack.cpp') diff --git a/src/mame/drivers/wolfpack.cpp b/src/mame/drivers/wolfpack.cpp index 549628162ae..2f3eee098d8 100644 --- a/src/mame/drivers/wolfpack.cpp +++ b/src/mame/drivers/wolfpack.cpp @@ -48,7 +48,7 @@ void wolfpack_state::machine_reset() CUSTOM_INPUT_MEMBER(wolfpack_state::wolfpack_dial_r) { - int bit = (FPTR)param; + int bit = (uintptr_t)param; return ((ioport("DIAL")->read() + bit) / 2) & 0x01; } -- cgit v1.2.3