aboutsummaryrefslogtreecommitdiff
path: root/src/entities
diff options
context:
space:
mode:
Diffstat (limited to 'src/entities')
-rw-r--r--src/entities/soldato.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/entities/soldato.c b/src/entities/soldato.c
index 4abe5af..da8df84 100644
--- a/src/entities/soldato.c
+++ b/src/entities/soldato.c
@@ -2,7 +2,7 @@
#include "game.h"
void initSoldato(Entity * entity, Game * game) {
- entity->model = &game->assets.models[ANTIFA_SHIP_ASSET];
+ entity->model = &game->assets.models[SOLDATO_ASSET];
entity->velocity.angularVelocity = (AxisAngle){(Vector3){1.0, 1.0, 1.0}, 1.0};
}