diff options
Diffstat (limited to 'src/mame/drivers/shuuz.cpp')
-rw-r--r-- | src/mame/drivers/shuuz.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/shuuz.cpp b/src/mame/drivers/shuuz.cpp index 27ca1d95ac1..d79c5362997 100644 --- a/src/mame/drivers/shuuz.cpp +++ b/src/mame/drivers/shuuz.cpp @@ -70,8 +70,8 @@ READ16_MEMBER(shuuz_state::leta_r) /* when reading the even ports, do a real analog port update */ if (which == 0) { - int dx = (INT8)ioport("TRACKX")->read(); - int dy = (INT8)ioport("TRACKY")->read(); + int dx = (int8_t)ioport("TRACKX")->read(); + int dy = (int8_t)ioport("TRACKY")->read(); m_cur[0] = dx + dy; m_cur[1] = dx - dy; |