summaryrefslogtreecommitdiff
path: root/game/vehicles/train.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'game/vehicles/train.cpp')
-rw-r--r--game/vehicles/train.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/game/vehicles/train.cpp b/game/vehicles/train.cpp
index f887be4..874db46 100644
--- a/game/vehicles/train.cpp
+++ b/game/vehicles/train.cpp
@@ -33,7 +33,7 @@ Train::tick(TickDuration dur)
}
void
-Train::doActivity(const Go *, TickDuration dur)
+Train::doActivity(Go *, TickDuration dur)
{
const auto maxSpeed = objects.front()->rvClass->maxSpeed;
if (speed != maxSpeed) {
@@ -42,7 +42,7 @@ Train::doActivity(const Go *, TickDuration dur)
}
void
-Train::doActivity(const Idle *, TickDuration dur)
+Train::doActivity(Idle *, TickDuration dur)
{
if (speed != 0.F) {
speed -= std::min(speed, 30.F * dur.count());