FC18: Removed unneeded substraction of zero to the choco melt step cycle

This commit is contained in:
Willem Cazander 2025-09-05 16:55:56 +02:00
parent 32a6389e1d
commit 49150be3b1

View file

@ -64,7 +64,7 @@ public enum FCFlameNumberTaste {
;
private static final FCFlameNumberTaste[] VALUES = values();
private static final int CHOCO_LETTER_ZERO = NUMBER_POSITIVE.ordinal();
private static final int CHOCO_HEAT_CYCLE_STEP = NUMBER_POSITIVE_CARRY.ordinal() - NUMBER_POSITIVE.ordinal();
private static final int CHOCO_HEAT_CYCLE_STEP = NUMBER_POSITIVE_CARRY.ordinal();
private static final int CHOCO_MASK_BIT_1000 = FLAG_NAN.ordinal();
private static final int CHOCO_MASK_BIT_0100 = INFINITY_POSITIVE.ordinal();
private static final int CHOCO_MASK_BIT_0001 = NUMBER_NEGATIVE.ordinal();