aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/bot.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bot.cpp b/src/bot.cpp
index f114f36..5a4601e 100644
--- a/src/bot.cpp
+++ b/src/bot.cpp
@@ -158,7 +158,7 @@ float minimax(int depth, Game *b, float alpha, float beta) {
alpha = std::max(alpha, bestEval);
if (alpha >= beta) {
- break;
+ break; // *snips*
}
}
} else {