summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
author Angelo Salese <angelosa@users.noreply.github.com>2022-02-28 23:50:05 +0100
committer GitHub <noreply@github.com>2022-02-28 23:50:05 +0100
commit74eb8b853791e07a7c8505a93f8fc8adf14984a2 (patch)
tree03d767ab850b21cabc6879df987f65029d49915f /src
parentdff83eddf0b5261b27995d7425188368f1500342 (diff)
hp98265a.cpp: fix a return indentation
Diffstat (limited to 'src')
-rw-r--r--src/devices/bus/hp_dio/hp98265a.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/bus/hp_dio/hp98265a.cpp b/src/devices/bus/hp_dio/hp98265a.cpp
index b215a4c1152..5ca9d128b53 100644
--- a/src/devices/bus/hp_dio/hp98265a.cpp
+++ b/src/devices/bus/hp_dio/hp98265a.cpp
@@ -268,7 +268,7 @@ void dio16_98265a_device::dmack_w_in(int channel, uint8_t data)
if(channel == 0 && !(m_control & REG_CONTROL_DE0))
return;
if(channel == 1 && !(m_control & REG_CONTROL_DE1))
- return;
+ return;
m_spc->dma_w(data);
}