Fixed a compile-breaking mistake in cpu/cpu.c.

This commit is contained in:
OBattler
2023-11-06 06:51:44 +01:00
parent 6bab813184
commit 7dd13b704c

View File

@@ -2501,7 +2501,7 @@ cpu_ven_reset(void)
break;
case CPU_CYRIX3S:
msr.fcr = (1 << 7) (1 << 8) | (1 << 9) | (1 << 12) | (1 << 16) | (1 << 18) | (1 << 19) |
msr.fcr = (1 << 7) | (1 << 8) | (1 << 9) | (1 << 12) | (1 << 16) | (1 << 18) | (1 << 19) |
(1 << 20) | (1 << 21);
break;
}