The pie is not inverted thus use left right naming

This commit is contained in:
Willem Cazander 2025-01-20 21:04:47 +01:00
parent ebe9291e5e
commit 55f7032bf6
2 changed files with 4 additions and 4 deletions

View file

@ -431,10 +431,10 @@ public enum FourCornerDotCake {
return FourCornerDotCakeTower.PIE_BYTE; return FourCornerDotCakeTower.PIE_BYTE;
} }
if (idx <= FC_PIE9C_27.ordinal()) { if (idx <= FC_PIE9C_27.ordinal()) {
return FourCornerDotCakeTower.PIE_UP; return FourCornerDotCakeTower.PIE_LEFT;
} }
if (idx <= FC_PIE9D_27.ordinal()) { if (idx <= FC_PIE9D_27.ordinal()) {
return FourCornerDotCakeTower.PIE_DOWN; return FourCornerDotCakeTower.PIE_RIGHT;
} }
if (idx <= FC_OCE0864_H9.ordinal()) { if (idx <= FC_OCE0864_H9.ordinal()) {
return FourCornerDotCakeTower.TXT_GRAMS; return FourCornerDotCakeTower.TXT_GRAMS;

View file

@ -31,8 +31,8 @@ import java.util.Objects;
public enum FourCornerDotCakeTower { public enum FourCornerDotCakeTower {
PIE_BYTE("Symbols for 6 and 8 bit systems"), PIE_BYTE("Symbols for 6 and 8 bit systems"),
PIE_UP("Symbols of the Pie9C cake"), PIE_LEFT("Symbols of the Pie9C cake"),
PIE_DOWN("Symbols of the Pie9D cake"), PIE_RIGHT("Symbols of the Pie9D cake"),
TXT_GRAMS("Numeric value words"), TXT_GRAMS("Numeric value words"),
TXT_INDEX("Normal text words"), TXT_INDEX("Normal text words"),
TXT_KODES("Special koder words"), TXT_KODES("Special koder words"),