From 11174c695058e737519bf24b812dc5a7d64f35c1 Mon Sep 17 00:00:00 2001 From: tslil clingman Date: Tue, 19 Jan 2021 20:55:29 -0500 Subject: Compiler warning --- include/ct1986.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'include') 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; } -- cgit v1.3.1