You didn't specify how many teams there are, and the answer depends on the number of teams, N.
Looking at TOTAL games played here, by all teams:
For N = 2, obviously 1 game will be played
For N = 3, there will be 3 games (A,B,C: unique games: A plays B, B plays C, A plays C)
For N = 4, there will be 6 games (A,B,C,D: unique games: A plays B,C,D; B plays C,D, C plays D)
... For the general case, there are games played in TOTAL.
[ While each INDIVIDUAL team plays N-1 games, there is overcounting if we just multiply N-1 by N. See for example the N=4 case where I omitted "B plays A" because that is already counted in "A plays B". Hope this makes sense. ]