summaryrefslogtreecommitdiff
path: root/shared
diff options
context:
space:
mode:
authorlonkaars <loek@pipeframe.xyz>2022-06-06 15:31:36 +0200
committerlonkaars <loek@pipeframe.xyz>2022-06-06 15:31:36 +0200
commitd69b8110517114d884c185c4dc8053858670c81f (patch)
tree8912cc5cb1b7ead5ce7469cd60356af189e926ce /shared
parent9cbd1ed3bd8e59e24bd4db92b749213ac2c0c8f9 (diff)
scal and spin done, removed lcal
Diffstat (limited to 'shared')
-rw-r--r--shared/modes.h11
1 files changed, 5 insertions, 6 deletions
diff --git a/shared/modes.h b/shared/modes.h
index ff939ea..b58a760 100644
--- a/shared/modes.h
+++ b/shared/modes.h
@@ -1,6 +1,6 @@
#pragma once
-#define W2_MODE_COUNT 8
+#define W2_MODE_COUNT 7
/** mode constants */
typedef enum {
@@ -8,9 +8,8 @@ typedef enum {
W2_M_MAZE = 0,
W2_M_GRID = 1,
W2_M_HALT = 2,
- W2_M_LCAL = 3,
- W2_M_CHRG = 4,
- W2_M_DIRC = 5,
- W2_M_SPIN = 6,
- W2_M_SCAL = 7,
+ W2_M_CHRG = 3,
+ W2_M_DIRC = 4,
+ W2_M_SPIN = 5,
+ W2_M_SCAL = 6,
} w2_e_mode;