TT2500: Fix unintended switch case fallthrough.
This commit is contained in:
parent
c035be465c
commit
5efb47dca5
1 changed files with 1 additions and 1 deletions
|
@ -388,7 +388,7 @@ static void cpu_bus (uint16 insn)
|
||||||
|
|
||||||
if (bb) {
|
if (bb) {
|
||||||
switch (a) {
|
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 4: dpy_magic (RES, &R[2], &R[3], R[4], R[5]); return;
|
||||||
case 5: dpy_chartv (R[b]); return;
|
case 5: dpy_chartv (R[b]); return;
|
||||||
case 6: cpu_popj (); return;
|
case 6: cpu_popj (); return;
|
||||||
|
|
Loading…
Add table
Reference in a new issue