summaryrefslogtreecommitdiff
path: root/main.cpp
diff options
context:
space:
mode:
authorTom Smeding <tom.smeding@gmail.com>2018-08-20 23:37:48 +0200
committerTom Smeding <tom.smeding@gmail.com>2018-08-20 23:37:48 +0200
commit974a5a213bd780f5021c3e3d40ffad05e3c0a23e (patch)
tree2dc24a08f1305148cfb0d9433c89fbecf9599199 /main.cpp
parentf62f1505da4cd68246ce40ad3cbccd81df1189df (diff)
Kill referee on player timeout
Diffstat (limited to 'main.cpp')
-rw-r--r--main.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/main.cpp b/main.cpp
index 3dca757..5a6c779 100644
--- a/main.cpp
+++ b/main.cpp
@@ -278,6 +278,7 @@ static void playMatch(Player &p1, Player &p2, int index, const Params &params) {
if (mres.ms1 / 1000 > timeout_msec || mres.ms2 / 1000 > timeout_msec) {
mres.status = MatchResult::Status::timeout;
mres.sc1 = mres.sc2 = 0;
+ referee.terminate();
goto match_done;
}