summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/tsamurai.cpp
diff options
context:
space:
mode:
author cam900 <dbtlrchl@naver.com>2019-03-30 08:43:35 +0900
committer ajrhacker <ajrhacker@users.noreply.github.com>2019-03-29 19:43:35 -0400
commit92b6d20440435b8ff19c6c757a5d0b56ea89736e (patch)
tree24893847f52eb92a7914b88c0b4879f3cb083962 /src/mame/drivers/tsamurai.cpp
parenta81a5dac636dbe4adf30c1759ea3192629a41bdb (diff)
gen_latch.cpp : Remove unnecessary arguments in handlers (#4623)
* gen_latch.cpp : Remove unnecessary arguments in acknowledge related handlers * gen_latch.cpp : Remove unnecessary handlers in 16 bit read/write handlers * gen_latch.cpp : Remove unnecessary arguments in 8 bit handlers
Diffstat (limited to 'src/mame/drivers/tsamurai.cpp')
-rw-r--r--src/mame/drivers/tsamurai.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/tsamurai.cpp b/src/mame/drivers/tsamurai.cpp
index 9d29fcc3e03..1b6cde80e5f 100644
--- a/src/mame/drivers/tsamurai.cpp
+++ b/src/mame/drivers/tsamurai.cpp
@@ -341,7 +341,7 @@ READ8_MEMBER(tsamurai_state::vsgongf_a100_r)
WRITE8_MEMBER(tsamurai_state::vsgongf_sound_command_w)
{
- m_soundlatch->write(space, offset, data);
+ m_soundlatch->write(data);
m_audiocpu->pulse_input_line(INPUT_LINE_NMI, attotime::zero);
}