summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author hap <happppp@users.noreply.github.com>2017-11-16 01:27:35 +0100
committer hap <happppp@users.noreply.github.com>2017-11-16 01:27:46 +0100
commit7a12fa7f7e38f52f698654bc8d867e70ce4a8e43 (patch)
tree65bd3aa911cb4cbf5a91faf3aea46bd3039866b7
parentaa6af02a206fdbb2b66c696eb79647e9425623ac (diff)
dotrikun: oops, 256H is 128 on, 128 off (nw)
-rw-r--r--src/mame/drivers/dotrikun.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/dotrikun.cpp b/src/mame/drivers/dotrikun.cpp
index 9805d764611..e3e0eb57274 100644
--- a/src/mame/drivers/dotrikun.cpp
+++ b/src/mame/drivers/dotrikun.cpp
@@ -70,7 +70,7 @@ public:
TIMER_DEVICE_CALLBACK_MEMBER(dotrikun_state::interrupt)
{
- m_maincpu->pulse_input_line(0, attotime::from_hz(MASTER_CLOCK/256));
+ m_maincpu->pulse_input_line(0, attotime::from_hz(MASTER_CLOCK/128));
}
TIMER_DEVICE_CALLBACK_MEMBER(dotrikun_state::scanline_off)