diff --git a/source/main.cpp b/source/main.cpp index 45507b8..9190a0f 100644 --- a/source/main.cpp +++ b/source/main.cpp @@ -39,6 +39,8 @@ void play_round(Player * const p1, Player * const p2) { Player * const pw = (p1_play == CONFLICT) ? p1 : p2; pw->points += 5; } + p1->push_result(p2_play); + p2->push_result(p1_play); } signed main() {