diff options
-rw-r--r-- | kurator/src/Battle.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kurator/src/Battle.cpp b/kurator/src/Battle.cpp index 66a17bd..9f33d59 100644 --- a/kurator/src/Battle.cpp +++ b/kurator/src/Battle.cpp @@ -237,7 +237,7 @@ draw_markers(engine::ConstContext& ctx) const auto& velocity = movement.speed; const auto edge = pos + velocity.normalized().scale(marker.radius); const auto tip = edge + velocity.scale(2.0 * ctx.camera.scale); - DrawLine(edge.x, edge.y, tip.x, tip.y, DARKGRAY); + DrawLine(edge.x, edge.y, tip.x, tip.y, DARKGREEN); } const engine::Point direction {std::cos(transform.angle), std::sin(transform.angle)}; const auto edge = pos + direction.scale(marker.radius); |