From 5efb47dca5a58925f8443c42c41f89183debff94 Mon Sep 17 00:00:00 2001 From: Lars Brinkhoff Date: Fri, 11 Mar 2022 09:18:38 +0100 Subject: [PATCH] TT2500: Fix unintended switch case fallthrough. --- tt2500/tt2500_cpu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tt2500/tt2500_cpu.c b/tt2500/tt2500_cpu.c index 1c6cb259..80f09c07 100644 --- a/tt2500/tt2500_cpu.c +++ b/tt2500/tt2500_cpu.c @@ -388,7 +388,7 @@ static void cpu_bus (uint16 insn) if (bb) { switch (a) { - case 2: PC = RES; + case 2: PC = RES; return; case 4: dpy_magic (RES, &R[2], &R[3], R[4], R[5]); return; case 5: dpy_chartv (R[b]); return; case 6: cpu_popj (); return;