From d7f7d3eb6d118e59129284d4ee3073a074b71d64 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maximilian=20Ke=C3=9Fler?= Date: Tue, 8 Aug 2023 02:04:58 +0200 Subject: [PATCH] fix typo --- main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.cpp b/main.cpp index d74b819..98630b0 100644 --- a/main.cpp +++ b/main.cpp @@ -57,7 +57,7 @@ void test() { } } -void check_games(unsigned num_players, unsigned max_draw_pile_size, unsigned first_game = 4, unsigned last_game = 9999) { +void check_games(unsigned num_players, unsigned max_draw_pile_size, unsigned first_game = 0, unsigned last_game = 9999) { std::vector> winning_percentages(last_game + 2); @@ -109,7 +109,7 @@ int main(int argc, char *argv[]) { #ifndef NDEBUG test(); #endif - check_games(3, 10); + check_games(4, 9); if(argc == 3) { std::string game (argv[1]); std::string turn (argv[2]);