summaryrefslogtreecommitdiff
path: root/vdp.cpp
diff options
context:
space:
mode:
authorOxore <oxore@protonmail.com>2024-05-26 23:09:42 +0300
committerOxore <oxore@protonmail.com>2024-05-26 23:09:42 +0300
commit3d1c417e15eee5e58d6de50246b2ee297e57ac3d (patch)
tree2ff18c9e37e40a2a3f245f9b37ce322d5b89d449 /vdp.cpp
parent24ee8de914199faf944b2401fd78561f792be38c (diff)
Fix hang up when MODESET2_IE0 is disabledHEADmaster
Diffstat (limited to 'vdp.cpp')
-rw-r--r--vdp.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/vdp.cpp b/vdp.cpp
index df8722d..47e6d6e 100644
--- a/vdp.cpp
+++ b/vdp.cpp
@@ -559,8 +559,8 @@ bool VDP::Scanline()
if (MODESET2_IE0_GET(mode_set_2)) {
m68k_set_irq(M68K_IRQ_6);
_status.vblank = true;
- return true;
}
+ return true;
}
_status.vblank = false;
return false;