summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author cracyc <cracyc@users.noreply.github.com>2017-02-20 22:01:40 -0600
committer cracyc <cracyc@users.noreply.github.com>2017-02-20 22:01:40 -0600
commit363a855df7af7f43ae7e53b27367b13f911f161d (patch)
tree1d1f5b078d1abc03e7f272808489a93805665a3a
parent80dcaac6aae84814ea810ddcf83f9b1dd137a5a1 (diff)
pc_joy: adjust to work with pcjr software that doesn't support calibration (nw)
-rw-r--r--src/devices/bus/pc_joy/pc_joy.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/bus/pc_joy/pc_joy.cpp b/src/devices/bus/pc_joy/pc_joy.cpp
index d90bee1e1cf..571aed854c9 100644
--- a/src/devices/bus/pc_joy/pc_joy.cpp
+++ b/src/devices/bus/pc_joy/pc_joy.cpp
@@ -23,7 +23,7 @@ pc_joy_device::pc_joy_device(const machine_config &mconfig, const char *tag, dev
READ8_MEMBER ( pc_joy_device::joy_port_r )
{
- int delta = ((machine().time() - m_stime) * 256 * 1000).seconds();
+ int delta = ((machine().time() - m_stime) * 256 * 2325).seconds();
if(!m_dev)
return 0xf0;