diff options
Diffstat (limited to 'jouer.c')
-rw-r--r-- | jouer.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -105,7 +105,7 @@ int Fjouer (SURFACES *surfaces, POSITIONS *positions, struct team_t *ally, struc else // sinon si c'est le dernier ally->chr_cur = 0; // on reprend le 1er } - Fchangeractionselectionnee(surfaces,positions,selection,page,nbactions,ACTIONS,NULL); + Fchangeractionselectionnee(surfaces,positions,selection,page,nbactions,ACTIONS); SDL_WaitEvent(&event); switch(event.type) { @@ -126,7 +126,7 @@ int Fjouer (SURFACES *surfaces, POSITIONS *positions, struct team_t *ally, struc else selection=nbactions-1; page=selection/3; - Fchangeractionselectionnee(surfaces,positions,selection,page,nbactions,ACTIONS,NULL); + Fchangeractionselectionnee(surfaces,positions,selection,page,nbactions,ACTIONS); break; case SDLK_DOWN: case SDLK_j: @@ -135,7 +135,7 @@ int Fjouer (SURFACES *surfaces, POSITIONS *positions, struct team_t *ally, struc else selection=0; page=selection/3; - Fchangeractionselectionnee(surfaces,positions,selection,page,nbactions,ACTIONS,NULL); + Fchangeractionselectionnee(surfaces,positions,selection,page,nbactions,ACTIONS); break; case SDLK_RETURN: case SDLK_f: |