diff --git a/travail_de_groupe/jeu_appren_par_renfo/src/ball.c b/travail_de_groupe/jeu_appren_par_renfo/src/ball.c index 7265fef9e59b88696747a00ae14aa660892d31e8..11d96b4ba15876b34ef0fffcf1a22469b89d07ca 100644 --- a/travail_de_groupe/jeu_appren_par_renfo/src/ball.c +++ b/travail_de_groupe/jeu_appren_par_renfo/src/ball.c @@ -5,8 +5,8 @@ int trajectoireAntoine[NUMBERPOINT_TRAJEC][2]; void initBall() { - ball.x = (rand()%(MAP_WIDTH/2)) * BLOCK_SIZE; - ball.y = (rand()% (MAP_HEIGHT)) * BLOCK_SIZE; + ball.x = (rand()%(MAP_WIDTH/2)) * BLOCK_SIZE + BLOCK_SIZE; + ball.y = (rand()% (MAP_HEIGHT - 2)) * BLOCK_SIZE + BLOCK_SIZE; ball.z = player.h / BLOCK_SIZE; ball.h = 0.5 * BLOCK_SIZE; ball.w = 0.5 * BLOCK_SIZE;