summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/nes/disksys.cpp
diff options
context:
space:
mode:
author 0kmg <9137159+0kmg@users.noreply.github.com>2022-04-23 04:15:25 -0800
committer GitHub <noreply@github.com>2022-04-23 08:15:25 -0400
commit564c57f1681955b49ab8b06796c5073cc25ed193 (patch)
tree7b10da7110d07baa959dee5deca701adbaddb454 /src/devices/bus/nes/disksys.cpp
parent520bb02d9750045af1fd916e4e2f860bd6122e61 (diff)
nes/bus: Minor cleanups for Taito boards. (#9607)
* nes/bus: Minor cleanups for Taito boards. - Fixed address masks for TC0190FMC and X1-005, reflecting hardware pin connections. - Fixed off-by-one in TC0190FMC+PAL IRQ due to using two's complement instead of one's complement. * Fixed khstad88's release date.
Diffstat (limited to 'src/devices/bus/nes/disksys.cpp')
-rw-r--r--src/devices/bus/nes/disksys.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/devices/bus/nes/disksys.cpp b/src/devices/bus/nes/disksys.cpp
index 35cf0906ec8..71622a3a9e6 100644
--- a/src/devices/bus/nes/disksys.cpp
+++ b/src/devices/bus/nes/disksys.cpp
@@ -461,7 +461,6 @@ void nes_disksys_device::load_disk(device_image_interface &image)
// if there is an header, skip it
image.fseek(header, SEEK_SET);
image.fread(m_fds_data.get(), 65500 * m_fds_sides);
- return;
}
void nes_disksys_device::unload_disk(device_image_interface &image)