summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine
diff options
context:
space:
mode:
author Vas Crabb <vas@vastheman.com>2021-11-27 23:26:19 +1100
committer Vas Crabb <vas@vastheman.com>2021-11-27 23:26:19 +1100
commit949d5ea5df23fa5ebc74c30b6ef9d9b881913bae (patch)
treee1b64906f2473360c67946a5b6aa8f8d34fa54bc /src/devices/machine
parent1267975eb6e5b105fc7d2cd3ab7d876a600fa1ab (diff)
-emu/rendersw.hxx: Fixed incorrect clipping of untextured rectangles.
-layouts: Started cleaning up fruit machine layouts to reduce bloat. -Fixed a few miscellaneous Coverity errors.
Diffstat (limited to 'src/devices/machine')
-rw-r--r--src/devices/machine/scnxx562.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/machine/scnxx562.cpp b/src/devices/machine/scnxx562.cpp
index 52c6aead064..2a21c36488e 100644
--- a/src/devices/machine/scnxx562.cpp
+++ b/src/devices/machine/scnxx562.cpp
@@ -483,7 +483,7 @@ void duscc_device::trigger_interrupt(int index, int state)
LOGINT("%s %s:%c %02x \n",FUNCNAME, tag(), 'A' + index, state);
- /* The Interrupt Control Register (ICR) bits, must be set for the correspondning channel */
+ // The Interrupt Control Register (ICR) bits, must be set for the corresponding channel
// ICR Check is probably by the caller but we check again to be sure
if ((m_icr & (index == CHANNEL_A ? REG_ICR_CHA : REG_ICR_CHB)) == 0)
{