Fixed external word index boolean off by one

This commit is contained in:
Willem Cazander 2025-01-26 18:39:51 +01:00
parent 4b5ea891be
commit d61ce42576

View file

@ -435,7 +435,7 @@ public enum FourCornerDotCake {
if (idx <= FC_PIE9D_27.ordinal()) {
return false;
}
if (idx >= FC_CLK1K_Z.ordinal()) {
if (idx >= FC_F4SID0512_XE.ordinal()) {
return false;
}
return true;