Fixed external word index boolean off by one
This commit is contained in:
parent
4b5ea891be
commit
d61ce42576
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue