aboutsummaryrefslogtreecommitdiffstats
path: root/src/entities/flower.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/entities/flower.c')
-rw-r--r--src/entities/flower.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/entities/flower.c b/src/entities/flower.c
index 00f27fc..89378bb 100644
--- a/src/entities/flower.c
+++ b/src/entities/flower.c
@@ -2,11 +2,11 @@
void initFlower(Entity* entity)
{
- entity->box = entityBoxFromScale(1.0, FLOWER_WIDTH, FLOWER_HEIGHT);
+ entity->box = entityBoxFromScale(FLOWER_SCALE, FLOWER_WIDTH, FLOWER_HEIGHT);
}
void updateFlower(Entity* entity, Game* game)
{
DrawBillboard(game->player.camera, game->assets.textures[FLOWER_TEXTURE],
- entity->position, 1.0, WHITE);
+ entity->position, FLOWER_SCALE, WHITE);
}