diff --git a/src/text/Score.cpp b/src/text/Score.cpp index ace84a9..b0f8f3e 100644 --- a/src/text/Score.cpp +++ b/src/text/Score.cpp @@ -34,6 +34,6 @@ void Score::incrementScore(const Side side) { break; } - if (incrementedScore > MAX_SCORE) + if (incrementedScore >= MAX_SCORE) sideWon_ = side; } \ No newline at end of file