aboutsummaryrefslogtreecommitdiffstats
path: root/src/entities/bush.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/entities/bush.c')
-rw-r--r--src/entities/bush.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/entities/bush.c b/src/entities/bush.c
index 884ffef..2fc5f6a 100644
--- a/src/entities/bush.c
+++ b/src/entities/bush.c
@@ -2,11 +2,11 @@
void initBush(Entity* entity)
{
- entity->box = entityBoxFromScale(1.0, BUSH_WIDTH, BUSH_HEIGHT);
+ entity->box = entityBoxFromScale(BUSH_SCALE, BUSH_WIDTH, BUSH_HEIGHT);
}
void updateBush(Entity* entity, Game* game)
{
DrawBillboard(game->player.camera, game->assets.textures[BUSH_TEXTURE],
- entity->position, 1.0, WHITE);
+ entity->position, BUSH_SCALE, WHITE);
}