aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/ct1986.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/ct1986.c b/include/ct1986.c
index ec73f7c..24c9c64 100644
--- a/include/ct1986.c
+++ b/include/ct1986.c
@@ -241,7 +241,8 @@ ct1986_minimax(const uint8_t cur_depth, const uint8_t max_depth,
upper = (col > count) ? count : col;
break;
}
- case M_RIGHT: {
+ case M_RIGHT: // fall through
+ default: {
upper = (4-col > count) ? count : 4-col;
break;
}