From d784c30796fb4e7b6dc4170e410ec7fda10f2084 Mon Sep 17 00:00:00 2001 From: esquizo Date: Tue, 5 May 2026 20:52:27 -0300 Subject: consertado local de inicialização do player MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- game.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/game.c b/game.c index cc96428..a44b0cf 100644 --- a/game.c +++ b/game.c @@ -35,8 +35,8 @@ entinit() { player = allocentity(); player->type = EPLAYER; - player->body.pos[0] = player_x; - player->body.pos[1] = player_x; + player->body.pos[0] = player_x * ENTITY_SIZE * 2; + player->body.pos[1] = player_y * ENTITY_SIZE * 2; player->body.size[0] = ENTITY_SIZE; player->body.size[1] = ENTITY_SIZE; player->life = 1; -- cgit v1.2.3