summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/ti99/gromport/gkracker.cpp
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2019-08-15 12:30:28 -0400
committer AJR <ajrhacker@users.noreply.github.com>2019-08-15 12:30:39 -0400
commitb9920d8de977129c84dc1bf449c501d12a8290b9 (patch)
treecea1b07c614c05df27b211249f8d91af25030fad /src/devices/bus/ti99/gromport/gkracker.cpp
parent211bda4a5350c35633c60995bb8dd111e197601f (diff)
More purging of now-superfluous uintptr_t casting (nw)
Diffstat (limited to 'src/devices/bus/ti99/gromport/gkracker.cpp')
-rw-r--r--src/devices/bus/ti99/gromport/gkracker.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/bus/ti99/gromport/gkracker.cpp b/src/devices/bus/ti99/gromport/gkracker.cpp
index dc10dd37ffc..7010b1f34ec 100644
--- a/src/devices/bus/ti99/gromport/gkracker.cpp
+++ b/src/devices/bus/ti99/gromport/gkracker.cpp
@@ -317,7 +317,7 @@ void ti99_gkracker_device::cruwrite(offs_t offset, uint8_t data)
INPUT_CHANGED_MEMBER( ti99_gkracker_device::gk_changed )
{
- LOGMASKED(LOG_GKRACKER, "Input changed %d - %d\n", (int)((uintptr_t)param & 0x07), newval);
+ LOGMASKED(LOG_GKRACKER, "Input changed %d - %d\n", int(param & 0x07), newval);
m_gk_switch[param & 0x07] = newval;
}