aboutsummaryrefslogtreecommitdiffstats
path: root/src/components.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/components.cpp')
-rw-r--r--src/components.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components.cpp b/src/components.cpp
index 644d504..f4ac01e 100644
--- a/src/components.cpp
+++ b/src/components.cpp
@@ -182,7 +182,7 @@ void RenderSystem::render(void)
if (entity.has_component<Health>()) {
float width = entity.component<Solid>()->width;
auto& health = *entity.component<Health>();
- width /= health.health / health.maxHealth;
+ width *= health.health / static_cast<float>(health.maxHealth);
GLfloat health_coord[] = {
pos.x, pos.y, -9, 0, 0,