summaryrefslogtreecommitdiff
path: root/src/game/unit_replicator.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/game/unit_replicator.cpp')
-rw-r--r--src/game/unit_replicator.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/game/unit_replicator.cpp b/src/game/unit_replicator.cpp
index 5d2eef5..28442f5 100644
--- a/src/game/unit_replicator.cpp
+++ b/src/game/unit_replicator.cpp
@@ -21,10 +21,10 @@ namespace game {
unit_replicator_t::unit_replicator_t(game::state_t *game_) : unit_t(game_, UNIT_REPLICATOR)
{
- size[0] = {-0.4f, -0.2f};
- size[1] = {+0.4f, +0.4f};
- render_size[0] = {-0.4f, -0.666667f};
- render_size[1] = {+0.4f, +0.4f};
+ size[0] = v2f_t(-0.4f, -0.2f) * 1.3f;
+ size[1] = v2f_t(+0.4f, +0.4f) * 1.3f;
+ render_size[0] = v2f_t(-0.4f, -0.666667f) * 1.3f;
+ render_size[1] = v2f_t(+0.4f, +0.4f) * 1.3f;
cmodel.cflags = CF_SOLID;
name = "Replicator";