diff options
author | lonkaars <loek@pipeframe.xyz> | 2022-06-26 16:27:48 +0200 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2022-06-26 16:27:48 +0200 |
commit | 55fe6aaeee49894dc07516f0c4e21f692b2950fe (patch) | |
tree | d6c709d5b8567381873fc38ecc7a599d3af6339d /robot/modes.c | |
parent | 6b7b02596522b0db476dd64bb69e0e3825ce790d (diff) |
remove some debug lines
Diffstat (limited to 'robot/modes.c')
-rw-r--r-- | robot/modes.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/robot/modes.c b/robot/modes.c index d706c2f..ea65e2d 100644 --- a/robot/modes.c +++ b/robot/modes.c @@ -30,7 +30,8 @@ void w2_modes_init() { void w2_modes_main() { (*g_w2_modes[g_w2_mode_history[g_w2_mode_history_index]])(); } void w2_modes_switch(w2_e_mode new_mode, bool replace) { - int16_t next_history_index = g_w2_mode_history_index + (new_mode == W2_M_PREV ? -1 : 1) * !replace; + int16_t next_history_index = + g_w2_mode_history_index + (new_mode == W2_M_PREV ? -1 : 1) * !replace; if (next_history_index == -1 || next_history_index == W2_MODE_HISTORY_BUFFER_SIZE - 1) { next_history_index = W2_RANGE(0, next_history_index, W2_MODE_HISTORY_BUFFER_SIZE); w2_errcatch_throw(W2_E_WARN_MODE_HISTORY_BUFFER_IOB); |